2022-11-08 09:23:46 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
id 'com.hiya.jacoco-android'
|
|
|
|
id 'kotlinx-serialization'
|
|
|
|
}
|
2022-11-06 12:28:35 +01:00
|
|
|
|
|
|
|
apply from: "${project.rootDir}/core/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/android_module_dependencies.gradle"
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
|
|
|
namespace 'info.nightscout.shared.impl'
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 23 // for wear
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':app-wear-shared:rx')
|
|
|
|
implementation project(':app-wear-shared:shared')
|
|
|
|
}
|