2022-11-08 09:23:46 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.library'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
id 'kotlin-allopen'
|
|
|
|
id 'com.hiya.jacoco-android'
|
|
|
|
}
|
2021-08-20 19:37:38 +02: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"
|
2022-06-06 10:25:08 +02:00
|
|
|
android {
|
|
|
|
namespace 'info.nightscout.androidaps.plugin.general.openhumans'
|
|
|
|
}
|
2021-08-20 19:37:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
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:interfaces')
|
2022-11-06 12:28:35 +01:00
|
|
|
implementation project(':app-wear-shared:shared')
|
2022-11-09 12:20:03 +01:00
|
|
|
|
|
|
|
api "com.squareup.okhttp3:okhttp:$okhttp3_version"
|
|
|
|
api "com.squareup.retrofit2:retrofit:$retrofit2_version"
|
2022-11-11 20:22:12 +01:00
|
|
|
|
|
|
|
api "androidx.browser:browser:1.4.0"
|
|
|
|
|
|
|
|
//WorkManager
|
|
|
|
api "androidx.work:work-runtime-ktx:$work_version"
|
|
|
|
//api "androidx.work:work-rxjava3:$work_version"
|
|
|
|
//api 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
|
|
|
|
|
|
|
|
api "com.google.android.material:material:$material_version"
|
|
|
|
|
2021-08-20 19:37:38 +02:00
|
|
|
}
|