2018-10-28 21:18:14 +03:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
android {
|
2021-01-04 17:12:49 +03:00
|
|
|
compileSdkVersion 30
|
2018-10-28 21:18:14 +03:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-06-18 15:18:40 +03:00
|
|
|
minSdkVersion 21
|
2021-01-04 17:12:49 +03:00
|
|
|
targetSdkVersion 30
|
2018-10-28 21:18:14 +03:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2019-10-24 18:32:16 +03:00
|
|
|
// Multidex is useful for tests
|
|
|
|
multiDexEnabled true
|
2019-01-16 21:25:43 +03:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-28 21:18:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:00:50 +03:00
|
|
|
compileOptions {
|
2021-09-02 10:50:34 +03:00
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
2018-12-13 13:00:50 +03:00
|
|
|
}
|
|
|
|
|
2019-09-27 12:42:46 +03:00
|
|
|
kotlinOptions {
|
2021-09-02 10:50:34 +03:00
|
|
|
jvmTarget = "11"
|
2019-09-27 12:42:46 +03:00
|
|
|
}
|
2018-10-28 21:18:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":matrix-sdk-android")
|
2021-07-22 15:13:24 +03:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
2021-02-20 13:20:10 +03:00
|
|
|
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0'
|
2019-07-02 10:39:45 +03:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2020-12-08 13:04:30 +03:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-rx2:$kotlin_coroutines_version"
|
2020-12-02 14:45:31 +03:00
|
|
|
|
2019-07-30 15:51:14 +03:00
|
|
|
// Paging
|
2020-07-06 16:59:49 +03:00
|
|
|
implementation "androidx.paging:paging-runtime-ktx:2.1.2"
|
2018-10-28 21:18:14 +03:00
|
|
|
|
2020-02-01 12:09:22 +03:00
|
|
|
// Logging
|
2021-08-23 16:12:59 +03:00
|
|
|
implementation 'com.jakewharton.timber:timber:5.0.1'
|
2018-10-28 21:18:14 +03:00
|
|
|
}
|