2022-11-08 09:23:46 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
}
|
2022-10-31 20:20:41 +01:00
|
|
|
|
2022-12-02 10:56:11 +01:00
|
|
|
apply from: "${project.rootDir}/core/main/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/android_module_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/test_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/allopen_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/core/main/jacoco_global.gradle"
|
2022-10-31 20:20:41 +01:00
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.implementation'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-11-09 23:28:48 +01:00
|
|
|
implementation project(':database:entities')
|
2022-11-09 16:49:36 +01:00
|
|
|
implementation project(':database:impl')
|
2022-12-02 10:56:11 +01:00
|
|
|
implementation project(':core:main')
|
2022-11-25 22:14:46 +01:00
|
|
|
implementation project(':core:graphview')
|
|
|
|
implementation project(':core:interfaces')
|
2022-11-14 10:58:59 +01:00
|
|
|
implementation project(':core:ui')
|
2022-11-22 21:39:19 +01:00
|
|
|
implementation project(':core:utils')
|
2022-11-22 11:54:27 +01:00
|
|
|
|
2023-09-21 16:44:55 +02:00
|
|
|
testImplementation project(':shared:tests')
|
2023-09-03 15:00:24 +02:00
|
|
|
|
2022-11-22 11:54:27 +01:00
|
|
|
// Protection
|
|
|
|
api 'androidx.biometric:biometric:1.1.0'
|
2022-10-31 20:20:41 +01:00
|
|
|
}
|