2018-10-03 23:56:33 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-10-19 20:26:38 +08:00
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes = true
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2018-12-30 00:54:03 +08:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
2019-01-30 19:55:35 +08:00
|
|
|
def versionMajor = 0
|
|
|
|
def versionMinor = 1
|
|
|
|
def versionPatch = 0
|
|
|
|
|
|
|
|
def generateVersionCodeFromTimestamp() {
|
|
|
|
// It's unix timestamp divided by 10: It's incremented by one every 10 seconds.
|
|
|
|
return (System.currentTimeMillis() / 1_000 / 10).toInteger()
|
|
|
|
}
|
|
|
|
|
|
|
|
def generateVersionCodeFromVersionName() {
|
|
|
|
return versionMajor * 10000 + versionMinor * 100 + versionPatch
|
|
|
|
}
|
|
|
|
|
2019-02-11 20:47:47 +08:00
|
|
|
project.android.buildTypes.all { buildType ->
|
|
|
|
buildType.javaCompileOptions.annotationProcessorOptions.arguments =
|
|
|
|
[
|
2019-03-12 15:29:49 +08:00
|
|
|
validateEpoxyModelUsage: String.valueOf(buildType.name == 'debug')
|
2019-02-11 20:47:47 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "im.vector.riotredesign"
|
2019-01-24 23:30:05 +08:00
|
|
|
minSdkVersion 16
|
2018-10-03 23:56:33 +08:00
|
|
|
targetSdkVersion 28
|
2019-01-24 23:30:05 +08:00
|
|
|
multiDexEnabled true
|
2019-01-30 19:55:35 +08:00
|
|
|
versionCode generateVersionCodeFromTimestamp()
|
|
|
|
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
|
2019-01-17 02:25:43 +08:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
buildTypes {
|
2019-03-13 22:11:02 +08:00
|
|
|
debug {
|
|
|
|
resValue "bool", "debug_mode", "true"
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
release {
|
2019-03-13 22:11:02 +08:00
|
|
|
resValue "bool", "debug_mode", "false"
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 18:00:50 +08:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-10-19 20:26:38 +08:00
|
|
|
|
2019-01-17 02:25:43 +08:00
|
|
|
def epoxy_version = "3.0.0"
|
|
|
|
def arrow_version = "0.8.2"
|
2019-02-28 00:17:47 +08:00
|
|
|
def coroutines_version = "1.0.1"
|
2019-02-22 02:21:08 +08:00
|
|
|
def markwon_version = '3.0.0-SNAPSHOT'
|
2019-03-12 15:29:49 +08:00
|
|
|
def big_image_viewer_version = '1.5.6'
|
|
|
|
def glide_version = '4.8.0'
|
2018-10-19 20:26:38 +08:00
|
|
|
|
2018-10-04 21:19:03 +08:00
|
|
|
implementation project(":matrix-sdk-android")
|
2018-10-29 02:18:14 +08:00
|
|
|
implementation project(":matrix-sdk-android-rx")
|
2019-01-24 23:30:05 +08:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2018-10-03 23:56:33 +08:00
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2019-02-28 00:17:47 +08:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
2019-01-17 22:04:57 +08:00
|
|
|
|
2019-01-17 02:25:43 +08:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2019-01-25 01:04:55 +08:00
|
|
|
implementation 'androidx.core:core-ktx:1.0.1'
|
|
|
|
|
2019-01-10 18:37:14 +08:00
|
|
|
// Paging
|
2019-01-17 22:04:57 +08:00
|
|
|
implementation 'androidx.paging:paging-runtime:2.0.0'
|
2018-10-04 21:19:03 +08:00
|
|
|
|
2018-10-31 23:11:59 +08:00
|
|
|
implementation 'com.jakewharton.threetenabp:threetenabp:1.1.1'
|
2018-10-16 21:52:30 +08:00
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
2019-02-20 00:40:38 +08:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2018-10-16 21:52:30 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// rx
|
|
|
|
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
|
2019-01-18 01:20:01 +08:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
2019-01-12 17:20:46 +08:00
|
|
|
implementation 'com.jakewharton.rxrelay2:rxrelay:2.1.0'
|
2019-01-18 01:20:01 +08:00
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0'
|
2018-12-30 02:57:38 +08:00
|
|
|
|
2018-10-19 20:26:38 +08:00
|
|
|
implementation("com.airbnb.android:epoxy:$epoxy_version")
|
|
|
|
kapt "com.airbnb.android:epoxy-processor:$epoxy_version"
|
2019-01-17 02:25:43 +08:00
|
|
|
implementation 'com.airbnb.android:mvrx:0.7.0'
|
2018-10-19 21:30:40 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// FP
|
|
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
|
|
|
|
|
|
|
// UI
|
2018-10-30 00:20:08 +08:00
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2019-01-18 01:20:01 +08:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha02'
|
2019-02-20 18:39:25 +08:00
|
|
|
implementation 'me.gujun.android:span:1.7'
|
2019-02-22 02:21:08 +08:00
|
|
|
implementation "ru.noties.markwon:core:$markwon_version"
|
|
|
|
implementation "ru.noties.markwon:html:$markwon_version"
|
|
|
|
|
2019-03-12 15:29:49 +08:00
|
|
|
// Image Loading
|
|
|
|
implementation "com.github.piasy:BigImageViewer:$big_image_viewer_version"
|
|
|
|
implementation "com.github.piasy:GlideImageLoader:$big_image_viewer_version"
|
|
|
|
implementation "com.github.piasy:ProgressPieIndicator:$big_image_viewer_version"
|
|
|
|
implementation "com.github.piasy:GlideImageViewFactory:$big_image_viewer_version"
|
|
|
|
implementation "com.github.bumptech.glide:glide:$glide_version"
|
|
|
|
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
2018-10-30 00:20:08 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// DI
|
2018-10-04 21:19:03 +08:00
|
|
|
implementation "org.koin:koin-android:$koin_version"
|
|
|
|
implementation "org.koin:koin-android-scope:$koin_version"
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// TESTS
|
2018-10-03 23:56:33 +08:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-01-17 02:25:43 +08:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
2018-10-19 20:26:38 +08:00
|
|
|
|
|
|
|
|