AndroidAPS/plugins/aps/build.gradle

36 lines
1.2 KiB
Groovy
Raw Normal View History

2022-11-14 19:04:09 +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"
2022-11-14 19:04:09 +01:00
android {
namespace 'info.nightscout.plugins.aps'
}
dependencies {
implementation project(':database:entities')
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:interfaces')
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-14 19:04:09 +01:00
implementation project(':core:ui')
2022-11-26 17:28:08 +01:00
implementation project(':core:validators')
2022-11-14 19:04:09 +01:00
2023-09-23 16:30:25 +02:00
testImplementation project(':pump:virtual')
2023-09-21 16:44:55 +02:00
testImplementation project(':shared:tests')
2023-09-03 21:10:34 +02:00
2022-11-14 19:04:09 +01:00
api "androidx.appcompat:appcompat:$appcompat_version"
2022-11-17 20:37:51 +01:00
api "androidx.swiperefreshlayout:swiperefreshlayout:$swipe_version"
2022-11-18 17:28:13 +01:00
api "androidx.gridlayout:gridlayout:$gridlayout_version"
2022-11-14 23:14:37 +01:00
// APS
api 'org.mozilla:rhino:1.7.14'
2022-11-14 19:04:09 +01:00
}