2022-02-11 05:58:07 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
apply plugin: 'kotlin-allopen'
|
|
|
|
apply plugin: 'com.hiya.jacoco-android'
|
|
|
|
|
2022-07-19 11:35:46 +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-02-11 05:58:07 +01:00
|
|
|
|
|
|
|
android {
|
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
flatDir {
|
|
|
|
dirs 'libs'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
implementation (name: 'eopatch_core', ext: 'aar')
|
2022-03-04 09:46:56 +01:00
|
|
|
// implementation (files("libs/eopatch_core.aar"))
|
2022-02-11 05:58:07 +01:00
|
|
|
implementation project(':core')
|
|
|
|
implementation project(':shared')
|
|
|
|
implementation project(':database')
|
|
|
|
|
|
|
|
//RxAndroidBle
|
2022-03-04 09:46:56 +01:00
|
|
|
implementation "com.polidea.rxandroidble2:rxandroidble:1.12.1"
|
|
|
|
implementation "com.jakewharton.rx2:replaying-share:2.2.0"
|
2022-02-11 05:58:07 +01:00
|
|
|
}
|