AndroidAPS/openhumans/build.gradle

20 lines
641 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2021-09-21 21:57:56 +02:00
apply plugin: 'kotlin-allopen'
apply plugin: 'com.hiya.jacoco-android'
2022-05-11 10:18:14 +02:00
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"
apply from: "${project.rootDir}/core/jacoco_global.gradle"
2022-06-06 10:25:08 +02:00
android {
namespace 'info.nightscout.androidaps.plugin.general.openhumans'
}
dependencies {
implementation project(':core')
implementation project(':database')
2021-12-10 12:17:03 +01:00
implementation project(':shared')
}