element-android/app/build.gradle

93 lines
2.6 KiB
Groovy
Raw Normal View History

2018-10-03 18:56:33 +03:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2018-10-19 15:26:38 +03:00
apply plugin: 'kotlin-kapt'
kapt {
correctErrorTypes = true
}
2018-10-03 18:56:33 +03:00
2018-12-29 18:54:03 +02:00
androidExtensions {
experimental = true
}
2018-10-03 18:56:33 +03:00
android {
compileSdkVersion 28
defaultConfig {
applicationId "im.vector.riotredesign"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-12-13 12:00:50 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-10-03 18:56:33 +03:00
}
2018-10-19 15:26:38 +03:00
configurations.all { strategy ->
strategy.resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support') {
details.useVersion "28.0.0"
}
}
}
2018-10-03 18:56:33 +03:00
dependencies {
2018-10-19 15:26:38 +03:00
def epoxy_version = "2.19.0"
def arrow_version = "0.8.0"
2018-10-19 15:26:38 +03:00
2018-10-03 18:56:33 +03:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(":matrix-sdk-android")
implementation project(":matrix-sdk-android-rx")
2018-10-03 18:56:33 +03:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
// Paging
implementation "android.arch.paging:runtime:1.0.1"
implementation 'com.jakewharton.threetenabp:threetenabp:1.1.1'
implementation 'com.jakewharton.timber:timber:4.7.1'
// rx
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
2019-01-12 11:20:46 +02:00
implementation 'com.jakewharton.rxrelay2:rxrelay:2.1.0'
2018-10-19 15:26:38 +03:00
implementation("com.airbnb.android:epoxy:$epoxy_version")
kapt "com.airbnb.android:epoxy-processor:$epoxy_version"
implementation 'com.airbnb.android:mvrx:0.6.0'
2018-10-19 16:30:40 +03:00
// FP
implementation "io.arrow-kt:arrow-core:$arrow_version"
// UI
2018-10-29 18:20:08 +02:00
implementation 'com.github.bumptech.glide:glide:4.8.0'
kapt 'com.github.bumptech.glide:compiler:4.8.0'
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
// DI
implementation "org.koin:koin-android:$koin_version"
implementation "org.koin:koin-android-scope:$koin_version"
2018-10-03 18:56:33 +03:00
// TESTS
2018-10-03 18:56:33 +03:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
2018-10-19 15:26:38 +03:00