AndroidAPS/plugins/main/build.gradle

48 lines
1.5 KiB
Groovy
Raw Normal View History

plugins {
id 'com.android.library'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-allopen'
}
2022-11-01 14:42:49 +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-11-01 14:42:49 +01:00
android {
2023-09-26 14:44:52 +02:00
namespace 'app.aaps.plugins.main'
2022-11-01 14:42:49 +01:00
}
dependencies {
2023-09-21 16:44:55 +02:00
implementation project(':shared:impl')
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-11-25 22:14:46 +01:00
implementation project(':core:graphview')
implementation project(':core:interfaces')
implementation project(':core:main')
2023-09-24 23:31:31 +02:00
implementation project(':core:nssdk')
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-26 17:28:08 +01:00
implementation project(':core:validators')
2022-11-09 12:20:03 +01:00
2022-12-07 19:55:08 +01:00
testImplementation project(':implementation')
2023-09-03 13:17:55 +02:00
testImplementation project(':plugins:insulin')
2023-09-21 16:44:55 +02:00
testImplementation project(':shared:tests')
2022-12-07 19:55:08 +01:00
2022-11-11 17:46:09 +01:00
api "androidx.appcompat:appcompat:$appcompat_version"
api "com.google.android.material:material:$material_version"
2022-11-09 12:20:03 +01:00
// Actions
2022-11-18 17:28:13 +01:00
api "androidx.gridlayout:gridlayout:$gridlayout_version"
2022-11-09 12:20:03 +01:00
//SmsCommunicator
2022-11-27 17:08:46 +01:00
api 'com.eatthepath:java-otp:0.4.0'
api 'com.github.kenglxn.QRGen:android:3.0.1'
2022-11-09 12:20:03 +01:00
2022-11-11 17:46:09 +01:00
// Overview
api 'com.google.android.flexbox:flexbox:3.0.0'
2022-11-17 20:37:51 +01:00
// Food
api "androidx.work:work-runtime-ktx:$work_version"
2022-11-01 14:42:49 +01:00
}