AndroidAPS/omnipod-dash/build.gradle

20 lines
530 B
Groovy
Raw Normal View History

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-09 21:21:30 +01:00
}