774ed51e1b
* NSCv3 initial work * Allow only 1 NSC * read sgv * NSv3: Read Bolus, Carbs * NSCv3: more work * fix build * loading working * work on TT * TT working * TBR processing * EPS working * PS Sync * Process entries at once. Share code v1,v3 * BolusCalculatorWizard working * TherapyEvent working * process bg at once * improve sync * sdk -> ns-sdk * handle status per version * OffileEvents working * EB working * RemoteDeviceStatus * fix build * cleanup
38 lines
1.4 KiB
Groovy
38 lines
1.4 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'kotlin-android'
|
|
id 'kotlin-kapt'
|
|
id 'kotlinx-serialization'
|
|
}
|
|
|
|
apply from: "${project.rootDir}/core/android_dependencies.gradle"
|
|
apply from: "${project.rootDir}/core/android_module_dependencies.gradle"
|
|
apply from: "${project.rootDir}/core/test_dependencies.gradle"
|
|
|
|
android {
|
|
namespace 'info.nightscout.sdk'
|
|
}
|
|
|
|
dependencies {
|
|
api "com.squareup.retrofit2:retrofit:$retrofit2_version"
|
|
api "com.squareup.retrofit2:adapter-rxjava3:$retrofit2_version"
|
|
api "com.squareup.retrofit2:converter-gson:$retrofit2_version"
|
|
api "com.squareup.okhttp3:okhttp:$okhttp3_version"
|
|
api "com.squareup.okhttp3:logging-interceptor:$okhttp3_version"
|
|
|
|
api "com.google.code.gson:gson:$gson_version"
|
|
|
|
api "net.danlew:android.joda:$joda_version"
|
|
|
|
api "io.reactivex.rxjava3:rxjava:$rxjava_version"
|
|
api "io.reactivex.rxjava3:rxandroid:$rxandroid_version"
|
|
api "io.reactivex.rxjava3:rxkotlin:$rxkotlin_version"
|
|
|
|
api "androidx.core:core-ktx:$core_version"
|
|
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-rx3:$coroutines_version"
|
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version"
|
|
}
|