cleanup native libs

This commit is contained in:
Milos Kozak 2021-02-19 01:22:34 +01:00
parent f20a1efe74
commit 58f69dae6e
10 changed files with 6 additions and 4 deletions

View file

@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'com.google.gms.google-services'
//apply plugin: 'jacoco-android'
apply plugin: 'com.hiya.jacoco-android'
apply plugin: 'com.google.firebase.crashlytics'
@ -117,9 +116,6 @@ android {
buildConfigField "String", "HEAD", '"' + generateGitBuild() + '"'
buildConfigField "String", "COMMITTED", '"' + allCommitted() + '"'
ndk {
moduleName "BleCommandUtil"
}
}
flavorDimensions "standard"

View file

@ -8,9 +8,15 @@ apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
android {
ndkVersion "21.1.6352462"
defaultConfig {
versionCode 1
versionName "1.0"
ndk {
moduleName "BleCommandUtil"
}
}
}