2023-10-19 17:05:51 +02:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
id("kotlin-android")
|
|
|
|
id("kotlin-kapt")
|
|
|
|
id("android-module-dependencies")
|
2023-10-19 22:48:49 +02:00
|
|
|
id("test-module-dependencies")
|
2023-10-20 10:49:54 +02:00
|
|
|
id("jacoco-module-dependencies")
|
2023-10-19 17:05:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "info.nightscout.pump.danars"
|
|
|
|
ndkVersion = Versions.ndkVersion
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
ndk {
|
|
|
|
moduleName = "BleCommandUtil"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.getByName("main") {
|
|
|
|
jniLibs.srcDirs("src/main/jniLibs")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core:interfaces"))
|
|
|
|
implementation(project(":core:main"))
|
|
|
|
implementation(project(":core:utils"))
|
|
|
|
implementation(project(":core:ui"))
|
|
|
|
implementation(project(":core:validators"))
|
|
|
|
implementation(project(":pump:dana"))
|
|
|
|
|
|
|
|
testImplementation(project(":shared:tests"))
|
|
|
|
testImplementation(project(":core:main"))
|
|
|
|
|
|
|
|
kapt(Libs.Dagger.compiler)
|
|
|
|
kapt(Libs.Dagger.androidProcessor)
|
|
|
|
}
|