2023-10-18 17:04:02 +02:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
id("kotlin-android")
|
|
|
|
id("kotlin-kapt")
|
|
|
|
id("android-module-dependencies")
|
2023-10-19 22:48:49 +02:00
|
|
|
id("test-module-dependencies")
|
2023-10-20 10:49:54 +02:00
|
|
|
id("jacoco-module-dependencies")
|
2023-10-18 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "app.aaps.plugins.sync"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":shared:impl"))
|
|
|
|
implementation(project(":database:entities"))
|
|
|
|
implementation(project(":database:impl"))
|
|
|
|
implementation(project(":core:graphview"))
|
|
|
|
implementation(project(":core:interfaces"))
|
|
|
|
implementation(project(":core:main"))
|
|
|
|
implementation(project(":core:nssdk"))
|
|
|
|
implementation(project(":core:ui"))
|
|
|
|
implementation(project(":core:utils"))
|
|
|
|
implementation(project(":core:validators"))
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation(Libs.KotlinX.coroutinesTest)
|
|
|
|
testImplementation(Libs.AndroidX.Work.testing)
|
|
|
|
|
|
|
|
testImplementation(project(":shared:tests"))
|
|
|
|
testImplementation(project(":implementation"))
|
|
|
|
testImplementation(project(":plugins:aps"))
|
2023-11-19 23:10:20 +01:00
|
|
|
androidTestImplementation(project(":shared:tests"))
|
2023-10-18 17:04:02 +02:00
|
|
|
|
|
|
|
// OpenHuman
|
|
|
|
api(Libs.Squareup.Okhttp3.okhttp)
|
|
|
|
api(Libs.Squareup.Retrofit2.retrofit)
|
|
|
|
api(Libs.AndroidX.browser)
|
|
|
|
api(Libs.AndroidX.Work.runtimeKtx)
|
2023-10-22 10:41:11 +02:00
|
|
|
api(Libs.AndroidX.gridLayout)
|
2023-10-18 17:04:02 +02:00
|
|
|
api(Libs.Google.Android.material)
|
|
|
|
|
|
|
|
// NSClient, Tidepool
|
|
|
|
api(Libs.socketIo)
|
|
|
|
api(Libs.Squareup.Okhttp3.loggingInterceptor)
|
|
|
|
api(Libs.Squareup.Retrofit2.adapterRxJava3)
|
|
|
|
api(Libs.Squareup.Retrofit2.converterGson)
|
|
|
|
api(Libs.Google.gson)
|
|
|
|
|
|
|
|
// DataLayerListenerService
|
|
|
|
api(Libs.Google.Android.PlayServices.wearable)
|
|
|
|
|
2023-11-19 23:10:20 +01:00
|
|
|
// Garmin
|
2023-12-06 15:35:54 +01:00
|
|
|
api(Libs.connectiqSdk)
|
|
|
|
androidTestImplementation(Libs.connectiqSdk)
|
2023-11-19 23:10:20 +01:00
|
|
|
|
2023-10-18 17:04:02 +02:00
|
|
|
kapt(Libs.Dagger.compiler)
|
|
|
|
kapt(Libs.Dagger.androidProcessor)
|
|
|
|
}
|