2017-01-03 00:30:27 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2017-11-05 22:32:36 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2018-08-31 20:35:30 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-03-21 12:42:28 +01:00
|
|
|
apply plugin: 'kotlin-parcelize'
|
2017-01-03 00:30:27 +01:00
|
|
|
|
2019-10-29 20:30:46 +01:00
|
|
|
apply from: "../instance-build.gradle"
|
|
|
|
|
2019-11-06 20:48:58 +01:00
|
|
|
def getGitSha = {
|
2018-07-16 19:01:34 +02:00
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2019-06-09 16:55:34 +02:00
|
|
|
commandLine 'git', 'rev-parse', '--short', 'HEAD'
|
2018-07-16 19:01:34 +02:00
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|
|
|
|
|
2017-01-03 00:30:27 +01:00
|
|
|
android {
|
2021-06-01 19:46:07 +02:00
|
|
|
compileSdkVersion 30
|
2017-01-03 00:30:27 +01:00
|
|
|
defaultConfig {
|
2019-10-29 20:30:46 +01:00
|
|
|
applicationId APP_ID
|
2018-09-16 18:54:12 +02:00
|
|
|
minSdkVersion 21
|
2021-06-01 19:46:07 +02:00
|
|
|
targetSdkVersion 30
|
2021-05-31 14:25:19 +02:00
|
|
|
versionCode 83
|
|
|
|
versionName "15.1"
|
2018-12-17 15:25:35 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-09-25 19:04:57 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-12-25 20:06:28 +01:00
|
|
|
|
2019-10-29 20:30:46 +01:00
|
|
|
resValue "string", "app_name", APP_NAME
|
|
|
|
|
|
|
|
buildConfigField("String", "CUSTOM_LOGO_URL", "\"$CUSTOM_LOGO_URL\"")
|
|
|
|
buildConfigField("String", "CUSTOM_INSTANCE", "\"$CUSTOM_INSTANCE\"")
|
|
|
|
buildConfigField("String", "SUPPORT_ACCOUNT_URL", "\"$SUPPORT_ACCOUNT_URL\"")
|
|
|
|
|
2018-12-25 20:06:28 +01:00
|
|
|
kapt {
|
|
|
|
arguments {
|
|
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
|
|
}
|
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-04-08 00:08:51 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2018-08-15 20:46:37 +02:00
|
|
|
proguardFiles 'proguard-rules.pro'
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2019-06-09 16:55:34 +02:00
|
|
|
debug {}
|
2018-07-16 19:01:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions "color"
|
|
|
|
productFlavors {
|
2019-06-09 16:55:34 +02:00
|
|
|
blue {}
|
2018-07-16 19:01:34 +02:00
|
|
|
green {
|
2020-11-28 17:34:21 +01:00
|
|
|
resValue "string", "app_name", APP_NAME + " Test"
|
2017-12-08 12:15:46 +01:00
|
|
|
applicationIdSuffix ".test"
|
2019-06-09 16:55:34 +02:00
|
|
|
versionNameSuffix "-" + getGitSha()
|
2017-12-08 12:15:46 +01:00
|
|
|
}
|
2017-01-03 00:30:27 +01:00
|
|
|
}
|
2017-10-25 21:56:27 +02:00
|
|
|
|
2017-04-13 06:01:02 +02:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2021-01-21 18:57:09 +01:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2018-03-09 22:02:32 +01:00
|
|
|
testOptions {
|
|
|
|
unitTests {
|
2019-09-22 08:18:44 +02:00
|
|
|
returnDefaultValues = true
|
2018-03-09 22:02:32 +01:00
|
|
|
includeAndroidResources = true
|
|
|
|
}
|
|
|
|
}
|
2018-12-25 20:06:28 +01:00
|
|
|
sourceSets {
|
|
|
|
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
|
|
|
|
}
|
|
|
|
|
2018-12-17 19:08:32 +01:00
|
|
|
packagingOptions {
|
|
|
|
// Exclude unneeded files added by libraries
|
|
|
|
exclude 'LICENSE_OFL'
|
|
|
|
exclude 'LICENSE_UNICODE'
|
|
|
|
}
|
2019-03-29 19:56:53 +01:00
|
|
|
bundle {
|
|
|
|
language {
|
|
|
|
// bundle all languages in every apk so the dynamic language switching works
|
|
|
|
enableSplit = false
|
|
|
|
}
|
|
|
|
}
|
2019-05-18 08:06:30 +02:00
|
|
|
}
|
|
|
|
|
2021-05-22 17:50:08 +02:00
|
|
|
ext.lifecycleVersion = "2.3.1"
|
2021-04-24 18:31:16 +02:00
|
|
|
ext.roomVersion = '2.3.0'
|
2020-06-04 20:16:48 +02:00
|
|
|
ext.retrofitVersion = '2.9.0'
|
2021-05-22 17:48:17 +02:00
|
|
|
ext.okhttpVersion = '4.9.1'
|
2021-05-22 18:41:28 +02:00
|
|
|
ext.glideVersion = '4.12.0'
|
2021-06-14 11:00:25 +02:00
|
|
|
ext.daggerVersion = '2.37'
|
|
|
|
ext.materialdrawerVersion = '8.4.1'
|
2017-08-03 17:01:02 +02:00
|
|
|
|
2018-06-25 13:02:34 +02:00
|
|
|
// if libraries are changed here, they should also be changed in LicenseActivity
|
2017-01-03 00:30:27 +01:00
|
|
|
dependencies {
|
2019-11-06 20:48:58 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
|
2021-06-17 18:54:56 +02:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-rx3:1.5.0'
|
|
|
|
|
2021-05-22 17:50:08 +02:00
|
|
|
implementation "androidx.core:core-ktx:1.5.0"
|
|
|
|
implementation "androidx.appcompat:appcompat:1.3.0"
|
2021-06-14 11:00:25 +02:00
|
|
|
implementation "androidx.fragment:fragment-ktx:1.3.4"
|
2020-12-13 16:31:32 +01:00
|
|
|
implementation "androidx.browser:browser:1.3.0"
|
2020-07-28 10:38:28 +02:00
|
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
2021-06-14 11:00:25 +02:00
|
|
|
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
2020-12-13 16:31:32 +01:00
|
|
|
implementation "androidx.exifinterface:exifinterface:1.3.2"
|
2019-11-06 20:48:58 +01:00
|
|
|
implementation "androidx.cardview:cardview:1.0.0"
|
2020-11-22 19:02:54 +01:00
|
|
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
2021-05-22 17:50:08 +02:00
|
|
|
implementation "androidx.sharetarget:sharetarget:1.1.0"
|
2020-08-17 21:30:56 +02:00
|
|
|
implementation "androidx.emoji:emoji:1.1.0"
|
|
|
|
implementation "androidx.emoji:emoji-appcompat:1.1.0"
|
2020-02-25 19:49:41 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion"
|
2021-03-13 21:27:20 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
|
2020-02-25 19:49:41 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:$lifecycleVersion"
|
2020-11-22 19:02:54 +01:00
|
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
|
2021-06-17 18:54:56 +02:00
|
|
|
implementation "androidx.paging:paging-runtime-ktx:3.0.0"
|
2019-12-20 21:31:41 +01:00
|
|
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
2021-05-22 17:50:08 +02:00
|
|
|
implementation "androidx.work:work-runtime:2.5.0"
|
2021-06-17 18:54:56 +02:00
|
|
|
implementation "androidx.room:room-ktx:$roomVersion"
|
2021-05-16 19:53:27 +02:00
|
|
|
implementation "androidx.room:room-rxjava3:$roomVersion"
|
2019-11-06 20:48:58 +01:00
|
|
|
kapt "androidx.room:room-compiler:$roomVersion"
|
|
|
|
|
2021-02-23 20:29:02 +01:00
|
|
|
implementation "com.google.android.material:material:1.3.0"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2019-06-09 19:48:04 +02:00
|
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
|
|
|
|
implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion"
|
2021-05-16 19:53:27 +02:00
|
|
|
implementation "com.squareup.retrofit2:adapter-rxjava3:$retrofitVersion"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
|
|
|
implementation "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
|
|
|
|
|
2021-06-14 11:00:25 +02:00
|
|
|
implementation "org.conscrypt:conscrypt-android:2.5.2"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
|
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
implementation "com.github.bumptech.glide:okhttp3-integration:$glideVersion"
|
|
|
|
|
2021-05-16 19:53:27 +02:00
|
|
|
implementation "io.reactivex.rxjava3:rxjava:3.0.12"
|
|
|
|
implementation "io.reactivex.rxjava3:rxandroid:3.0.0"
|
|
|
|
implementation "io.reactivex.rxjava3:rxkotlin:3.0.1"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2021-05-16 19:53:27 +02:00
|
|
|
implementation "com.uber.autodispose2:autodispose-androidx-lifecycle:2.0.0"
|
|
|
|
implementation "com.uber.autodispose2:autodispose:2.0.0"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2018-03-27 19:47:00 +02:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
|
|
|
implementation "com.google.dagger:dagger-android:$daggerVersion"
|
|
|
|
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2020-12-13 16:31:32 +01:00
|
|
|
implementation "com.github.connyduck:sparkbutton:4.1.0"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2020-07-27 10:42:39 +02:00
|
|
|
implementation "com.github.chrisbanes:PhotoView:2.3.0"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2020-04-15 18:57:53 +02:00
|
|
|
implementation "com.mikepenz:materialdrawer:$materialdrawerVersion"
|
|
|
|
implementation "com.mikepenz:materialdrawer-iconics:$materialdrawerVersion"
|
|
|
|
implementation 'com.mikepenz:google-material-typeface:3.0.1.4.original-kotlin@aar'
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2021-05-21 17:51:47 +02:00
|
|
|
implementation "com.github.CanHub:Android-Image-Cropper:3.1.0"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2021-05-21 17:51:47 +02:00
|
|
|
implementation "de.c1710:filemojicompat:1.0.18"
|
2019-11-06 20:48:58 +01:00
|
|
|
|
2020-11-22 19:02:54 +01:00
|
|
|
testImplementation "androidx.test.ext:junit:1.1.2"
|
|
|
|
testImplementation "org.robolectric:robolectric:4.4"
|
2020-12-13 16:31:32 +01:00
|
|
|
testImplementation "org.mockito:mockito-inline:3.6.28"
|
2019-11-06 20:48:58 +01:00
|
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
|
|
|
|
|
2020-11-22 19:02:54 +01:00
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:3.3.0"
|
2020-09-14 07:52:54 +02:00
|
|
|
androidTestImplementation "androidx.room:room-testing:$roomVersion"
|
2020-11-22 19:02:54 +01:00
|
|
|
androidTestImplementation "androidx.test.ext:junit:1.1.2"
|
2021-05-21 17:51:47 +02:00
|
|
|
testImplementation "androidx.arch.core:core-testing:2.1.0"
|
2017-11-05 22:32:36 +01:00
|
|
|
}
|