forked from GitHub-Mirror/riotX-android
74 lines
2.2 KiB
Groovy
74 lines
2.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
kapt {
|
|
correctErrorTypes = true
|
|
}
|
|
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
configurations.all { strategy ->
|
|
strategy.resolutionStrategy.eachDependency { details ->
|
|
if (details.requested.group == 'com.android.support') {
|
|
details.useVersion "28.0.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def epoxy_version = "2.19.0"
|
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(":matrix-sdk-android")
|
|
implementation project(":matrix-sdk-android-rx")
|
|
|
|
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'
|
|
|
|
implementation 'com.jakewharton.threetenabp:threetenabp:1.1.1'
|
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
implementation("com.airbnb.android:epoxy:$epoxy_version")
|
|
kapt "com.airbnb.android:epoxy-processor:$epoxy_version"
|
|
implementation "com.airbnb.android:epoxy-paging:$epoxy_version"
|
|
implementation 'com.airbnb.android:mvrx:0.6.0'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
kapt 'com.github.bumptech.glide:compiler:4.8.0'
|
|
//todo remove that
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
|
|
|
|
implementation "org.koin:koin-android:$koin_version"
|
|
implementation "org.koin:koin-android-scope:$koin_version"
|
|
|
|
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'
|
|
}
|
|
|
|
|