2018-10-03 15:56:33 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2019-06-18 15:42:07 +00:00
|
|
|
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
|
2018-10-03 15:56:33 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-10-19 12:26:38 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes = true
|
|
|
|
}
|
2018-10-03 15:56:33 +00:00
|
|
|
|
2018-12-29 16:54:03 +00:00
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
|
|
|
}
|
|
|
|
|
2019-07-11 14:49:06 +00:00
|
|
|
ext.versionMajor = 0
|
2019-07-11 15:44:58 +00:00
|
|
|
ext.versionMinor = 2
|
2019-07-11 14:49:06 +00:00
|
|
|
ext.versionPatch = 0
|
2019-01-30 11:55:35 +00:00
|
|
|
|
2019-03-18 17:53:14 +00:00
|
|
|
static def getGitTimestamp() {
|
2019-03-13 12:10:36 +00:00
|
|
|
def cmd = 'git show -s --format=%ct'
|
|
|
|
return cmd.execute().text.trim() as Long
|
|
|
|
}
|
|
|
|
|
2019-03-13 16:00:30 +00:00
|
|
|
static def generateVersionCodeFromTimestamp() {
|
2019-01-30 11:55:35 +00:00
|
|
|
// It's unix timestamp divided by 10: It's incremented by one every 10 seconds.
|
2019-03-13 12:10:36 +00:00
|
|
|
return (getGitTimestamp() / 10).toInteger()
|
2019-01-30 11:55:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def generateVersionCodeFromVersionName() {
|
|
|
|
return versionMajor * 10000 + versionMinor * 100 + versionPatch
|
|
|
|
}
|
|
|
|
|
2019-03-13 16:00:30 +00:00
|
|
|
static def gitRevision() {
|
|
|
|
def cmd = "git rev-parse --short HEAD"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
static def gitRevisionDate() {
|
|
|
|
def cmd = "git show -s --format=%ci HEAD^{commit}"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
static def gitBranchName() {
|
|
|
|
def cmd = "git name-rev --name-only HEAD"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
2019-02-11 12:47:47 +00:00
|
|
|
project.android.buildTypes.all { buildType ->
|
|
|
|
buildType.javaCompileOptions.annotationProcessorOptions.arguments =
|
|
|
|
[
|
2019-03-12 07:29:49 +00:00
|
|
|
validateEpoxyModelUsage: String.valueOf(buildType.name == 'debug')
|
2019-02-11 12:47:47 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-06-21 09:13:16 +00:00
|
|
|
def buildNumber = System.getenv("BUILDKITE_BUILD_NUMBER") as Integer ?: 0
|
2019-03-13 16:00:30 +00:00
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
2019-07-02 15:27:08 +00:00
|
|
|
applicationId "im.vector.riotx"
|
2019-06-28 08:06:36 +00:00
|
|
|
// Set to API 19 because motionLayout is min API 18.
|
|
|
|
// In the future we may consider using an alternative of MotionLayout to support API 16. But for security reason, maybe not.
|
|
|
|
minSdkVersion 19
|
2018-10-03 15:56:33 +00:00
|
|
|
targetSdkVersion 28
|
2019-01-24 15:30:05 +00:00
|
|
|
multiDexEnabled true
|
2019-07-11 14:49:06 +00:00
|
|
|
|
|
|
|
// For release, use generateVersionCodeFromVersionName()
|
2019-07-11 15:44:58 +00:00
|
|
|
versionCode generateVersionCodeFromTimestamp()
|
|
|
|
// versionCode generateVersionCodeFromVersionName()
|
2019-07-11 14:49:06 +00:00
|
|
|
|
2019-01-30 11:55:35 +00:00
|
|
|
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
|
2019-03-13 16:00:30 +00:00
|
|
|
|
2019-06-21 09:13:16 +00:00
|
|
|
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
2019-03-13 16:00:30 +00:00
|
|
|
resValue "string", "git_revision", "\"${gitRevision()}\""
|
2019-06-21 09:13:16 +00:00
|
|
|
|
|
|
|
buildConfigField "String", "GIT_REVISION_DATE", "\"${gitRevisionDate()}\""
|
2019-03-13 16:00:30 +00:00
|
|
|
resValue "string", "git_revision_date", "\"${gitRevisionDate()}\""
|
2019-06-21 09:13:16 +00:00
|
|
|
|
|
|
|
buildConfigField "String", "GIT_BRANCH_NAME", "\"${gitBranchName()}\""
|
2019-03-13 16:00:30 +00:00
|
|
|
resValue "string", "git_branch_name", "\"${gitBranchName()}\""
|
2019-06-21 09:13:16 +00:00
|
|
|
|
|
|
|
buildConfigField "String", "BUILD_NUMBER", "\"${buildNumber}\""
|
2019-03-13 16:00:30 +00:00
|
|
|
resValue "string", "build_number", "\"${buildNumber}\""
|
|
|
|
|
2019-01-16 18:25:43 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-10-03 15:56:33 +00:00
|
|
|
}
|
2019-03-13 16:00:30 +00:00
|
|
|
|
2019-06-07 08:17:14 +00:00
|
|
|
signingConfigs {
|
|
|
|
debug {
|
|
|
|
keyAlias 'androiddebugkey'
|
|
|
|
keyPassword 'android'
|
|
|
|
storeFile file('./signature/debug.keystore')
|
|
|
|
storePassword 'android'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
buildTypes {
|
2019-03-13 14:11:02 +00:00
|
|
|
debug {
|
2019-07-11 15:59:07 +00:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
resValue "string", "app_name", "RiotX dbg"
|
|
|
|
|
2019-03-13 14:11:02 +00:00
|
|
|
resValue "bool", "debug_mode", "true"
|
2019-04-02 16:08:43 +00:00
|
|
|
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
|
2019-06-07 08:17:14 +00:00
|
|
|
|
|
|
|
signingConfig signingConfigs.debug
|
2019-03-13 14:11:02 +00:00
|
|
|
}
|
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
release {
|
2019-07-11 15:59:07 +00:00
|
|
|
resValue "string", "app_name", "RiotX"
|
|
|
|
|
2019-03-13 14:11:02 +00:00
|
|
|
resValue "bool", "debug_mode", "false"
|
2019-04-02 16:08:43 +00:00
|
|
|
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
|
2019-03-13 14:11:02 +00:00
|
|
|
|
2018-10-03 15:56:33 +00:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-12-13 10:00:50 +00:00
|
|
|
|
2019-03-13 16:00:30 +00:00
|
|
|
flavorDimensions "store"
|
|
|
|
|
|
|
|
productFlavors {
|
2019-03-19 13:38:15 +00:00
|
|
|
gplay {
|
2019-03-13 16:00:30 +00:00
|
|
|
dimension "store"
|
|
|
|
|
|
|
|
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
|
|
|
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\""
|
|
|
|
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\""
|
|
|
|
}
|
|
|
|
|
2019-03-19 13:38:15 +00:00
|
|
|
fdroid {
|
2019-03-13 16:00:30 +00:00
|
|
|
dimension "store"
|
|
|
|
|
|
|
|
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
|
|
|
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\""
|
|
|
|
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
2019-04-03 10:04:24 +00:00
|
|
|
lintConfig file("lint.xml")
|
2019-03-13 16:00:30 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 10:00:50 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-10-03 15:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-10-19 12:26:38 +00:00
|
|
|
|
2019-03-19 18:45:32 +00:00
|
|
|
def epoxy_version = "3.3.0"
|
2019-01-16 18:25:43 +00:00
|
|
|
def arrow_version = "0.8.2"
|
2019-02-27 16:17:47 +00:00
|
|
|
def coroutines_version = "1.0.1"
|
2019-06-03 15:53:04 +00:00
|
|
|
def markwon_version = '3.0.0'
|
2019-03-12 07:29:49 +00:00
|
|
|
def big_image_viewer_version = '1.5.6'
|
2019-04-03 20:54:48 +00:00
|
|
|
def glide_version = '4.9.0'
|
2019-05-09 16:26:32 +00:00
|
|
|
def moshi_version = '1.8.0'
|
2019-06-18 18:00:20 +00:00
|
|
|
def daggerVersion = '2.23.1'
|
2018-10-19 12:26:38 +00:00
|
|
|
|
2018-10-04 13:19:03 +00:00
|
|
|
implementation project(":matrix-sdk-android")
|
2018-10-28 18:18:14 +00:00
|
|
|
implementation project(":matrix-sdk-android-rx")
|
2019-01-24 15:30:05 +00:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
2018-10-03 15:56:33 +00:00
|
|
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2019-02-27 16:17:47 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
2019-01-17 14:04:57 +00:00
|
|
|
|
2019-07-02 07:39:45 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
|
2019-07-02 21:06:40 +00:00
|
|
|
//Do not use beta2 at the moment, as it breaks things
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta1'
|
2019-07-02 07:39:45 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.0.2'
|
2019-01-24 17:04:55 +00:00
|
|
|
|
2018-10-31 15:11:59 +00:00
|
|
|
implementation 'com.jakewharton.threetenabp:threetenabp:1.1.1'
|
2019-05-09 16:26:32 +00:00
|
|
|
implementation "com.squareup.moshi:moshi-adapters:$moshi_version"
|
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
|
2019-03-28 16:28:20 +00:00
|
|
|
|
2019-06-18 15:42:07 +00:00
|
|
|
// OSS License
|
|
|
|
implementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
|
|
|
|
|
2019-03-28 16:28:20 +00:00
|
|
|
// Log
|
2018-10-16 13:52:30 +00:00
|
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
2019-03-28 16:28:20 +00:00
|
|
|
|
|
|
|
// Debug
|
2019-02-19 16:40:38 +00:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
2018-10-16 13:52:30 +00:00
|
|
|
|
2018-12-29 18:57:38 +00:00
|
|
|
// rx
|
|
|
|
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
|
2019-01-17 17:20:01 +00:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
2019-01-12 09:20:46 +00:00
|
|
|
implementation 'com.jakewharton.rxrelay2:rxrelay:2.1.0'
|
2019-06-18 16:29:48 +00:00
|
|
|
// TODO RxBindings3 exists
|
2019-01-17 17:20:01 +00:00
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.2.0'
|
2018-12-29 18:57:38 +00:00
|
|
|
|
2018-10-19 12:26:38 +00:00
|
|
|
implementation("com.airbnb.android:epoxy:$epoxy_version")
|
|
|
|
kapt "com.airbnb.android:epoxy-processor:$epoxy_version"
|
2019-05-22 14:36:31 +00:00
|
|
|
implementation 'com.airbnb.android:mvrx:1.0.1'
|
2018-10-19 13:30:40 +00:00
|
|
|
|
2019-04-02 16:08:43 +00:00
|
|
|
// Work
|
2019-07-02 07:39:45 +00:00
|
|
|
implementation "androidx.work:work-runtime-ktx:2.1.0-rc01"
|
2019-04-02 16:08:43 +00:00
|
|
|
|
2019-06-18 16:29:48 +00:00
|
|
|
// Functional Programming
|
2018-12-29 18:57:38 +00:00
|
|
|
implementation "io.arrow-kt:arrow-core:$arrow_version"
|
|
|
|
|
2019-03-28 10:53:28 +00:00
|
|
|
// Pref
|
|
|
|
implementation 'androidx.preference:preference:1.0.0'
|
|
|
|
|
2018-12-29 18:57:38 +00:00
|
|
|
// UI
|
2018-10-29 16:20:08 +00:00
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2019-07-02 07:39:45 +00:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha07'
|
2019-02-20 10:39:25 +00:00
|
|
|
implementation 'me.gujun.android:span:1.7'
|
2019-02-21 18:21:08 +00:00
|
|
|
implementation "ru.noties.markwon:core:$markwon_version"
|
|
|
|
implementation "ru.noties.markwon:html:$markwon_version"
|
2019-06-03 15:53:04 +00:00
|
|
|
implementation 'me.saket:better-link-movement-method:2.2.0'
|
2019-02-21 18:21:08 +00:00
|
|
|
|
2019-05-16 08:23:57 +00:00
|
|
|
// Passphrase strength helper
|
|
|
|
implementation 'com.nulab-inc:zxcvbn:1.2.5'
|
|
|
|
|
|
|
|
//Alerter
|
2019-06-12 14:30:30 +00:00
|
|
|
implementation 'com.tapadoo.android:alerter:4.0.3'
|
2019-05-16 08:23:57 +00:00
|
|
|
|
2019-04-08 13:51:35 +00:00
|
|
|
implementation 'com.otaliastudios:autocomplete:1.1.0'
|
|
|
|
|
2019-03-28 10:53:28 +00:00
|
|
|
// Butterknife
|
|
|
|
implementation 'com.jakewharton:butterknife:10.1.0'
|
|
|
|
kapt 'com.jakewharton:butterknife-compiler:10.1.0'
|
|
|
|
|
|
|
|
// Shake detection
|
|
|
|
implementation 'com.squareup:seismic:1.0.2'
|
|
|
|
|
2019-03-12 07:29:49 +00: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"
|
2019-04-12 11:46:59 +00:00
|
|
|
implementation 'com.danikula:videocache:2.7.1'
|
2018-10-29 16:20:08 +00:00
|
|
|
|
2019-04-02 16:08:43 +00:00
|
|
|
// Badge for compatibility
|
|
|
|
implementation 'me.leolin:ShortcutBadger:1.1.2@aar'
|
|
|
|
|
2019-04-11 11:21:51 +00:00
|
|
|
// File picker
|
|
|
|
implementation 'com.github.jaiselrahman:FilePicker:1.2.2'
|
2019-04-03 20:54:48 +00:00
|
|
|
|
2018-12-29 18:57:38 +00:00
|
|
|
// DI
|
2019-06-18 18:00:20 +00:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
|
|
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
|
|
|
compileOnly 'com.squareup.inject:assisted-inject-annotations-dagger2:0.4.0'
|
|
|
|
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.4.0'
|
2018-10-03 15:56:33 +00:00
|
|
|
|
2019-04-02 16:08:43 +00:00
|
|
|
// gplay flavor only
|
2019-06-27 08:42:22 +00:00
|
|
|
gplayImplementation('com.google.firebase:firebase-messaging:19.0.1') {
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
|
|
|
}
|
2019-04-02 16:08:43 +00:00
|
|
|
|
2018-12-29 18:57:38 +00:00
|
|
|
// TESTS
|
2018-10-03 15:56:33 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-07-02 07:39:45 +00:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2018-10-03 15:56:33 +00:00
|
|
|
}
|
2018-10-19 12:26:38 +00:00
|
|
|
|
2019-07-03 16:18:07 +00:00
|
|
|
if (getGradle().getStartParameter().getTaskRequests().toString().contains("Gplay")) {
|
2019-04-02 16:08:43 +00:00
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
}
|