2020-05-06 01:27:38 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-02-18 18:54:01 +01:00
|
|
|
apply plugin: 'com.hiya.jacoco-android'
|
2020-05-06 01:27:38 +02:00
|
|
|
|
2021-02-18 22:33:14 +01:00
|
|
|
apply from: "${project.rootDir}/gradle/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
|
2021-02-18 23:35:23 +01:00
|
|
|
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
|
2020-05-06 01:27:38 +02:00
|
|
|
|
2021-02-18 22:33:14 +01:00
|
|
|
android {
|
2021-02-19 01:22:34 +01:00
|
|
|
ndkVersion "21.1.6352462"
|
|
|
|
|
2020-05-06 01:27:38 +02:00
|
|
|
defaultConfig {
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2021-02-19 01:22:34 +01:00
|
|
|
|
|
|
|
ndk {
|
|
|
|
moduleName "BleCommandUtil"
|
|
|
|
}
|
2020-05-06 01:27:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':core')
|
2020-05-09 20:18:12 +02:00
|
|
|
implementation project(':dana')
|
2021-02-18 23:35:23 +01:00
|
|
|
}
|