plugins { id 'com.android.library' id 'kotlin-android' id 'kotlin-kapt' id 'kotlin-allopen' id 'com.hiya.jacoco-android' } apply from: "${project.rootDir}/core/core-main/android_dependencies.gradle" apply from: "${project.rootDir}/core/core-main/android_module_dependencies.gradle" apply from: "${project.rootDir}/core/core-main/allopen_dependencies.gradle" apply from: "${project.rootDir}/core/core-main/test_dependencies.gradle" apply from: "${project.rootDir}/core/core-main/jacoco_global.gradle" android { namespace 'info.nightscout.androidaps.plugin.general.openhumans' } dependencies { implementation project(':database:entities') implementation project(':database:impl') implementation project(':core:interfaces') implementation project(':app-wear-shared:shared') api "com.squareup.okhttp3:okhttp:$okhttp3_version" api "com.squareup.retrofit2:retrofit:$retrofit2_version" 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" }