2021-02-11 11:01:18 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-02-18 23:35:23 +01:00
|
|
|
apply plugin: 'com.hiya.jacoco-android'
|
2021-02-09 21:21:30 +01:00
|
|
|
|
2021-02-18 23:35:23 +01:00
|
|
|
apply from: "${project.rootDir}/gradle/android_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
|
|
|
|
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
|
2021-02-09 21:21:30 +01:00
|
|
|
|
2021-02-18 23:35:23 +01:00
|
|
|
android {
|
2021-02-09 21:21:30 +01:00
|
|
|
defaultConfig {
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-02-17 19:34:01 +01:00
|
|
|
implementation project(':core')
|
2021-02-18 23:31:31 +01:00
|
|
|
implementation project(':omnipod-common')
|
2021-02-27 23:50:51 +01:00
|
|
|
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
implementation "androidx.room:room-rxjava2:$room_version"
|
|
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
|
|
implementation 'com.github.guepardoapps:kulid:1.1.2.0'
|
2021-02-26 23:56:39 +01:00
|
|
|
}
|