2022-11-14 10:58:59 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "${project.rootDir}/core/core-main/android_dependencies.gradle"
|
|
|
|
//apply from: "${project.rootDir}/core/core-main/android_module_dependencies.gradle"
|
|
|
|
//apply from: "${project.rootDir}/core/core-main/jacoco_global.gradle"
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.core.ui'
|
2022-11-14 13:25:09 +01:00
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2022-11-14 10:58:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation "androidx.core:core-ktx:$core_version"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
|
|
implementation "com.google.android.material:material:$material_version"
|
|
|
|
}
|