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 {
|
2023-09-27 11:27:55 +02:00
|
|
|
namespace 'app.aaps.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-23 16:30:25 +02:00
|
|
|
testImplementation project(':database:impl')
|
|
|
|
testImplementation project(':implementation')
|
|
|
|
testImplementation project(':insight')
|
|
|
|
testImplementation project(':plugins:aps')
|
|
|
|
testImplementation project(':plugins:source')
|
|
|
|
testImplementation project(':pump:combo')
|
|
|
|
testImplementation project(':pump:dana')
|
|
|
|
testImplementation project(':pump:danar')
|
|
|
|
testImplementation project(':pump:danars')
|
|
|
|
testImplementation project(':pump:virtual')
|
2023-09-21 16:44:55 +02:00
|
|
|
testImplementation project(':shared:tests')
|
2023-09-03 21:26:22 +02:00
|
|
|
|
2022-11-26 23:45:20 +01:00
|
|
|
// Phone checker
|
|
|
|
api 'com.scottyab:rootbeer-lib:0.1.0'
|
|
|
|
}
|