2022-11-26 23:45:20 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
}
|
|
|
|
|
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"
|
2023-09-03 15:52:17 +02:00
|
|
|
|
2022-11-26 23:45:20 +01:00
|
|
|
android {
|
2022-12-08 17:59:29 +01:00
|
|
|
namespace 'info.nightscout.plugins.constraints'
|
2022-11-26 23:45:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':core:interfaces')
|
2023-09-18 23:28:32 +02:00
|
|
|
implementation project(':core:main')
|
2022-11-26 23:45:20 +01:00
|
|
|
implementation project(':core:ui')
|
|
|
|
implementation project(':core:utils')
|
2022-12-08 17:59:29 +01:00
|
|
|
implementation project(':core:validators')
|
2022-11-27 09:53:19 +01:00
|
|
|
implementation project(':database:entities')
|
2022-11-26 23:45:20 +01:00
|
|
|
|
2023-09-03 21:26:22 +02:00
|
|
|
testImplementation project(':app-wear-shared:shared-tests')
|
|
|
|
|
2022-11-26 23:45:20 +01:00
|
|
|
// Phone checker
|
|
|
|
api 'com.scottyab:rootbeer-lib:0.1.0'
|
|
|
|
}
|