2018-10-29 02:18:14 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
android {
|
2021-09-15 17:28:58 +08:00
|
|
|
compileSdk versions.compileSdk
|
2018-10-29 02:18:14 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-09-15 17:28:58 +08:00
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
2018-10-29 02:18:14 +08:00
|
|
|
|
2019-10-24 23:32:16 +08:00
|
|
|
// Multidex is useful for tests
|
|
|
|
multiDexEnabled true
|
2019-01-17 02:25:43 +08:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-29 02:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 18:00:50 +08:00
|
|
|
compileOptions {
|
2021-09-15 17:28:58 +08:00
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
2018-12-13 18:00:50 +08:00
|
|
|
}
|
|
|
|
|
2019-09-27 17:42:46 +08:00
|
|
|
kotlinOptions {
|
2021-09-02 15:50:34 +08:00
|
|
|
jvmTarget = "11"
|
2019-09-27 17:42:46 +08:00
|
|
|
}
|
2018-10-29 02:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-17 19:58:44 +08:00
|
|
|
|
2018-10-29 02:18:14 +08:00
|
|
|
implementation project(":matrix-sdk-android")
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.androidx.appCompat
|
|
|
|
implementation libs.rx.rxKotlin
|
|
|
|
implementation libs.rx.rxAndroid
|
|
|
|
implementation libs.jetbrains.coroutinesRx2
|
2020-12-02 19:45:31 +08:00
|
|
|
|
2019-07-30 20:51:14 +08:00
|
|
|
// Paging
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.androidx.pagingRuntimeKtx
|
2018-10-29 02:18:14 +08:00
|
|
|
|
2020-02-01 17:09:22 +08:00
|
|
|
// Logging
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.jakewharton.timber
|
2018-10-29 02:18:14 +08:00
|
|
|
}
|