1. added dex loader

This commit is contained in:
vadym 2020-08-06 23:52:59 -07:00
parent dd95c5c13d
commit 2786d8f8ca

View File

@ -36,6 +36,12 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
task ndkBuild(type: Exec) {
@ -61,6 +67,7 @@ dependencies {
implementation 'com.google.android.material:material:1.3.0-alpha02'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.hbb20:ccp:2.4.0'
implementation "app.artyomd.injector:injector-android:{latest-version}"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'