AndroidAPS/plugins/configuration/build.gradle

35 lines
1.1 KiB
Groovy
Raw Normal View History

2022-11-21 16:48:45 +01:00
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
2023-09-18 14:23:00 +02:00
id 'kotlin-parcelize'
2022-11-21 16:48:45 +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/allopen_dependencies.gradle"
apply from: "${project.rootDir}/core/main/test_dependencies.gradle"
apply from: "${project.rootDir}/core/main/jacoco_global.gradle"
2023-09-26 12:44:36 +02:00
2022-11-21 16:48:45 +01:00
android {
2023-09-26 12:44:36 +02:00
namespace 'app.aaps.plugins.configuration'
2022-11-21 16:48:45 +01:00
}
dependencies {
implementation project(':database:entities')
2022-11-25 22:14:46 +01:00
implementation project(':core:interfaces')
implementation project(':core:main')
2023-09-24 23:31:31 +02:00
implementation project(':core:nssdk')
2022-11-21 20:26:06 +01:00
implementation project(':core:utils')
2022-11-21 16:48:45 +01:00
implementation project(':core:ui')
2022-12-02 10:56:11 +01:00
implementation project(':core:validators')
2023-09-03 21:26:22 +02:00
2023-09-21 16:44:55 +02:00
testImplementation project(':shared:tests')
2023-09-03 21:26:22 +02:00
2022-11-27 22:19:40 +01:00
//WorkManager
api "androidx.work:work-runtime-ktx:$work_version"
// Maintenance
api "androidx.gridlayout:gridlayout:$gridlayout_version"
2022-11-21 16:48:45 +01:00
}