plugins {
    id 'com.android.library'
    id 'kotlin-android'
    id 'kotlin-kapt'
    id 'kotlin-allopen'
}

apply from: "${project.rootDir}/core/main/android_dependencies.gradle"
apply from: "${project.rootDir}/core/main/android_module_dependencies.gradle"
apply from: "${project.rootDir}/core/main/test_dependencies.gradle"
apply from: "${project.rootDir}/core/main/allopen_dependencies.gradle"
apply from: "${project.rootDir}/core/main/jacoco_global.gradle"
android {
    namespace 'app.aaps.implementation'
}

dependencies {
    implementation project(':database:entities')
    implementation project(':database:impl')
    implementation project(':core:main')
    implementation project(':core:graphview')
    implementation project(':core:interfaces')
    implementation project(':core:ui')
    implementation project(':core:utils')

    testImplementation project(':shared:tests')
    testImplementation project(':plugins:aps')
    testImplementation project(':pump:virtual')

    // Protection
    api 'androidx.biometric:biometric:1.1.0'
}