SchildiChat-android/matrix-sdk-android-rx/build.gradle

49 lines
1.2 KiB
Groovy
Raw Normal View History

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