AndroidAPS/core/build.gradle

23 lines
562 B
Groovy
Raw Normal View History

2020-05-03 21:27:42 +02:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
2020-05-05 23:27:01 +02:00
apply plugin: 'kotlin-kapt'
2021-01-18 23:59:01 +01:00
apply plugin: 'kotlin-parcelize'
2021-02-18 08:15:42 +01:00
apply plugin: 'com.hiya.jacoco-android'
2020-05-03 21:27:42 +02:00
2021-02-18 23:35:23 +01:00
apply from: 'core_dependencies.gradle'
2021-02-18 22:33:14 +01:00
apply from: "${project.rootDir}/gradle/android_dependencies.gradle"
apply from: "${project.rootDir}/gradle/android_module_dependencies.gradle"
2021-02-18 23:35:23 +01:00
apply from: "${project.rootDir}/gradle/test_dependencies.gradle"
2020-05-03 21:27:42 +02:00
2021-02-18 22:33:14 +01:00
android {
2020-05-03 21:27:42 +02:00
defaultConfig {
versionCode 1
versionName "1.0"
2020-05-03 22:18:58 +02:00
}
2020-05-03 21:27:42 +02:00
}
2021-02-06 00:30:27 +01:00
dependencies {
implementation project(':database')
}