2020-05-06 01:27:38 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
|
|
|
|
defaultConfig {
|
2020-05-12 00:23:39 +02:00
|
|
|
minSdkVersion 24
|
2020-05-06 01:27:38 +02:00
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
testCoverageEnabled(project.hasProperty('coverage'))
|
|
|
|
}
|
|
|
|
firebaseDisable {
|
|
|
|
System.setProperty("disableFirebase", "true")
|
|
|
|
ext.enableCrashlytics = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':core')
|
2020-05-09 20:18:12 +02:00
|
|
|
implementation project(':dana')
|
2020-05-06 01:27:38 +02:00
|
|
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
|
|
|
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation 'androidx.core:core-ktx:1.2.0'
|
2020-05-08 14:59:30 +02:00
|
|
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
2020-05-06 01:27:38 +02:00
|
|
|
implementation "androidx.activity:activity-ktx:${activityVersion}"
|
|
|
|
|
2020-05-08 14:59:30 +02:00
|
|
|
// Graphview cannot be upgraded
|
|
|
|
implementation "com.jjoe64:graphview:4.0.1"
|
2020-05-06 01:27:38 +02:00
|
|
|
|
2020-05-09 20:18:12 +02:00
|
|
|
implementation 'net.danlew:android.joda:2.10.6'
|
2020-05-09 10:52:20 +02:00
|
|
|
|
2020-05-06 01:27:38 +02:00
|
|
|
implementation "com.google.dagger:dagger-android:$dagger_version"
|
|
|
|
implementation "com.google.dagger:dagger-android-support:$dagger_version"
|
|
|
|
annotationProcessor "com.google.dagger:dagger-compiler:$dagger_version"
|
|
|
|
annotationProcessor "com.google.dagger:dagger-android-processor:$dagger_version"
|
|
|
|
kapt "com.google.dagger:dagger-android-processor:$dagger_version"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$dagger_version"
|
|
|
|
|
|
|
|
//RxBus
|
2020-05-31 11:27:12 +02:00
|
|
|
implementation "io.reactivex.rxjava2:rxandroid:${rxandroid_version}"
|
2020-05-06 01:27:38 +02:00
|
|
|
|
|
|
|
testImplementation 'junit:junit:4.13'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
}
|
|
|
|
|