2019-08-07 17:46:38 +08:00
|
|
|
import com.android.build.OutputFile
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
apply plugin: 'com.android.application'
|
2019-06-18 23:42:07 +08:00
|
|
|
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
|
2018-10-03 23:56:33 +08:00
|
|
|
apply plugin: 'kotlin-android'
|
2020-12-16 07:46:52 +08:00
|
|
|
apply plugin: 'kotlin-parcelize'
|
2018-10-19 20:26:38 +08:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2021-03-04 00:26:20 +08:00
|
|
|
apply plugin: 'placeholder-resolver'
|
2018-10-19 20:26:38 +08:00
|
|
|
|
|
|
|
kapt {
|
|
|
|
correctErrorTypes = true
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2020-06-18 21:00:12 +08:00
|
|
|
// Note: 2 digits max for each value
|
2020-06-30 19:34:02 +08:00
|
|
|
ext.versionMajor = 1
|
2021-09-27 17:57:23 +08:00
|
|
|
ext.versionMinor = 3
|
2021-09-29 20:56:10 +08:00
|
|
|
ext.versionPatch = 2
|
2019-01-30 19:55:35 +08:00
|
|
|
|
2019-03-19 01:53:14 +08:00
|
|
|
static def getGitTimestamp() {
|
2019-03-13 20:10:36 +08:00
|
|
|
def cmd = 'git show -s --format=%ct'
|
|
|
|
return cmd.execute().text.trim() as Long
|
|
|
|
}
|
|
|
|
|
2019-03-14 00:00:30 +08:00
|
|
|
static def generateVersionCodeFromTimestamp() {
|
2020-01-11 00:29:34 +08:00
|
|
|
// It's unix timestamp, minus timestamp of October 3rd 2018 (first commit date) divided by 100: It's incremented by one every 100 seconds.
|
2020-01-13 22:12:39 +08:00
|
|
|
// plus 20_000_000 for compatibility reason with the previous way the Version Code was computed
|
2020-01-11 00:29:34 +08:00
|
|
|
// Note that the result will be multiplied by 10 when adding the digit for the arch
|
2020-01-20 22:58:12 +08:00
|
|
|
return ((getGitTimestamp() - 1_538_524_800) / 100).toInteger() + 20_000_000
|
2019-01-30 19:55:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
def generateVersionCodeFromVersionName() {
|
2020-01-13 22:12:39 +08:00
|
|
|
// plus 4_000_000 for compatibility reason with the previous way the Version Code was computed
|
2020-01-11 00:29:34 +08:00
|
|
|
// Note that the result will be multiplied by 10 when adding the digit for the arch
|
|
|
|
return (versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch) + 4_000_000
|
2019-08-14 16:43:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
def getVersionCode() {
|
|
|
|
if (gitBranchName() == "develop") {
|
2020-10-22 22:10:08 +08:00
|
|
|
return generateVersionCodeFromTimestamp()
|
2019-08-14 16:43:47 +08:00
|
|
|
} else {
|
2020-10-22 22:10:08 +08:00
|
|
|
return generateVersionCodeFromVersionName()
|
2019-08-14 16:43:47 +08:00
|
|
|
}
|
2019-01-30 19:55:35 +08:00
|
|
|
}
|
|
|
|
|
2019-03-14 00:00:30 +08:00
|
|
|
static def gitRevision() {
|
2020-01-17 23:06:58 +08:00
|
|
|
def cmd = "git rev-parse --short=8 HEAD"
|
2019-03-14 00:00:30 +08:00
|
|
|
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() {
|
2019-09-12 22:05:04 +08:00
|
|
|
def fromEnv = System.env.BUILDKITE_BRANCH as String ?: ""
|
|
|
|
|
|
|
|
if (!fromEnv.isEmpty()) {
|
|
|
|
return fromEnv
|
|
|
|
} else {
|
|
|
|
// Note: this command return "HEAD" on Buildkite, so use the system env 'BUILDKITE_BRANCH' content first
|
|
|
|
def cmd = "git rev-parse --abbrev-ref HEAD"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
2019-03-14 00:00:30 +08:00
|
|
|
}
|
|
|
|
|
2021-04-29 18:14:55 +08:00
|
|
|
// For Google Play build, build on any other branch than main will have a "-dev" suffix
|
2020-01-20 22:58:12 +08:00
|
|
|
static def getGplayVersionSuffix() {
|
2021-04-29 18:14:55 +08:00
|
|
|
if (gitBranchName() == "main") {
|
2019-08-08 22:57:03 +08:00
|
|
|
return ""
|
|
|
|
} else {
|
2020-07-14 03:50:26 +08:00
|
|
|
return "-dev"
|
2019-08-08 22:57:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-20 22:58:12 +08:00
|
|
|
static def gitTag() {
|
|
|
|
def cmd = "git describe --exact-match --tags"
|
|
|
|
return cmd.execute().text.trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
// For F-Droid build, build on a not tagged commit will have a "-dev" suffix
|
|
|
|
static def getFdroidVersionSuffix() {
|
|
|
|
if (gitTag() == "") {
|
|
|
|
return "-dev"
|
|
|
|
} else {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-01-11 00:29:34 +08:00
|
|
|
// map for the version codes last digit
|
|
|
|
// x86 must have greater values than arm
|
2019-08-07 17:46:38 +08:00
|
|
|
// 64 bits have greater value than 32 bits
|
|
|
|
ext.abiVersionCodes = ["armeabi-v7a": 1, "arm64-v8a": 2, "x86": 3, "x86_64": 4].withDefault { 0 }
|
|
|
|
|
2019-09-12 22:05:04 +08:00
|
|
|
def buildNumber = System.env.BUILDKITE_BUILD_NUMBER as Integer ?: 0
|
2019-03-14 00:00:30 +08:00
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
android {
|
2021-09-15 17:28:58 +08:00
|
|
|
|
|
|
|
|
2020-07-03 05:39:42 +08:00
|
|
|
|
|
|
|
// Due to a bug introduced in Android gradle plugin 3.6.0, we have to specify the ndk version to use
|
|
|
|
// Ref: https://issuetracker.google.com/issues/144111441
|
|
|
|
ndkVersion "21.3.6528147"
|
|
|
|
|
2021-09-15 17:28:58 +08:00
|
|
|
compileSdk versions.compileSdk
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
defaultConfig {
|
2020-06-18 22:11:07 +08:00
|
|
|
applicationId "im.vector.app"
|
2020-06-18 20:18:40 +08:00
|
|
|
// Set to API 21: see #405
|
2021-09-15 17:28:58 +08:00
|
|
|
minSdk versions.minSdk
|
|
|
|
targetSdk versions.targetSdk
|
2019-01-24 23:30:05 +08:00
|
|
|
multiDexEnabled true
|
2019-07-11 22:49:06 +08:00
|
|
|
|
2020-12-02 00:50:59 +08:00
|
|
|
renderscriptTargetApi 24
|
|
|
|
renderscriptSupportModeEnabled true
|
|
|
|
|
2019-08-14 16:43:47 +08:00
|
|
|
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode.
|
2021-04-29 18:14:55 +08:00
|
|
|
// Other branches (main, features, etc.) will have version code based on application version.
|
2019-08-14 16:43:47 +08:00
|
|
|
versionCode project.getVersionCode()
|
2019-07-11 22:49:06 +08:00
|
|
|
|
2020-08-27 21:37:10 +08:00
|
|
|
// Required for sonar analysis
|
|
|
|
versionName "${versionMajor}.${versionMinor}.${versionPatch}-sonar"
|
|
|
|
|
2019-06-21 17:13:16 +08:00
|
|
|
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
2019-03-14 00:00:30 +08:00
|
|
|
resValue "string", "git_revision", "\"${gitRevision()}\""
|
2019-06-21 17:13:16 +08:00
|
|
|
|
|
|
|
buildConfigField "String", "GIT_REVISION_DATE", "\"${gitRevisionDate()}\""
|
2019-03-14 00:00:30 +08:00
|
|
|
resValue "string", "git_revision_date", "\"${gitRevisionDate()}\""
|
2019-06-21 17:13:16 +08:00
|
|
|
|
|
|
|
buildConfigField "String", "GIT_BRANCH_NAME", "\"${gitBranchName()}\""
|
2019-03-14 00:00:30 +08:00
|
|
|
resValue "string", "git_branch_name", "\"${gitBranchName()}\""
|
2019-06-21 17:13:16 +08:00
|
|
|
|
|
|
|
buildConfigField "String", "BUILD_NUMBER", "\"${buildNumber}\""
|
2019-03-14 00:00:30 +08:00
|
|
|
resValue "string", "build_number", "\"${buildNumber}\""
|
|
|
|
|
2021-04-15 00:53:13 +08:00
|
|
|
// The two booleans must not have the same value. We need two values for the manifest
|
2021-05-20 19:56:41 +08:00
|
|
|
// LoginFlowV2 is disabled to be merged on develop (changelog: Improve login/register flow (#1410, #2585, #3172))
|
|
|
|
resValue "bool", "useLoginV1", "true"
|
|
|
|
resValue "bool", "useLoginV2", "false"
|
2021-04-15 00:53:13 +08:00
|
|
|
|
2021-07-14 18:49:16 +08:00
|
|
|
// NotificationSettingsV2 is disabled. To be released in conjunction with iOS/Web
|
2021-08-26 00:54:23 +08:00
|
|
|
def useNotificationSettingsV2 = true
|
2021-08-11 20:13:38 +08:00
|
|
|
buildConfigField "Boolean", "USE_NOTIFICATION_SETTINGS_V2", "${useNotificationSettingsV2}"
|
|
|
|
resValue "bool", "useNotificationSettingsV1", "${!useNotificationSettingsV2}"
|
|
|
|
resValue "bool", "useNotificationSettingsV2", "${useNotificationSettingsV2}"
|
2021-07-14 04:22:56 +08:00
|
|
|
|
2021-02-08 22:26:09 +08:00
|
|
|
buildConfigField "im.vector.app.features.crypto.keysrequest.OutboundSessionKeySharingStrategy", "outboundSessionKeySharingStrategy", "im.vector.app.features.crypto.keysrequest.OutboundSessionKeySharingStrategy.WhenTyping"
|
2021-02-04 16:47:24 +08:00
|
|
|
|
2021-07-15 23:04:10 +08:00
|
|
|
buildConfigField "Long", "VOICE_MESSAGE_DURATION_LIMIT_MS", "120_000L"
|
2021-06-17 21:17:38 +08:00
|
|
|
|
2021-06-02 00:12:10 +08:00
|
|
|
// If set, MSC3086 asserted identity messages sent on VoIP calls will cause the call to appear in the room corresponding to the asserted identity.
|
|
|
|
// This *must* only be set in trusted environments.
|
|
|
|
buildConfigField "Boolean", "handleCallAssertedIdentityEvents", "false"
|
|
|
|
|
2019-01-17 02:25:43 +08:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-08-07 17:46:38 +08:00
|
|
|
|
|
|
|
// Keep abiFilter for the universalApk
|
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi-v7a", "x86", 'arm64-v8a', 'x86_64'
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ref: https://developer.android.com/studio/build/configure-apk-splits.html
|
|
|
|
splits {
|
|
|
|
// Configures multiple APKs based on ABI.
|
|
|
|
abi {
|
|
|
|
// Enables building multiple APKs per ABI.
|
|
|
|
enable true
|
|
|
|
|
|
|
|
// By default all ABIs are included, so use reset() and include to specify that we only
|
|
|
|
// want APKs for armeabi-v7a, x86, arm64-v8a and x86_64.
|
|
|
|
|
|
|
|
// Resets the list of ABIs that Gradle should create APKs for to none.
|
|
|
|
reset()
|
|
|
|
|
|
|
|
// Specifies a list of ABIs that Gradle should create APKs for.
|
|
|
|
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
|
|
|
|
|
|
|
|
// Generate a universal APK that includes all ABIs, so user who install from CI tool can use this one by default.
|
|
|
|
universalApk true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-07 22:51:39 +08:00
|
|
|
applicationVariants.all { variant ->
|
2020-10-22 22:10:08 +08:00
|
|
|
// assign different version code for each output
|
|
|
|
def baseVariantVersion = variant.versionCode * 10
|
2019-08-07 17:46:38 +08:00
|
|
|
variant.outputs.each { output ->
|
|
|
|
def baseAbiVersionCode = project.ext.abiVersionCodes.get(output.getFilter(OutputFile.ABI))
|
2019-08-07 22:51:39 +08:00
|
|
|
// Known limitation: it does not modify the value in the BuildConfig.java generated file
|
2020-10-19 18:29:11 +08:00
|
|
|
// See https://issuetracker.google.com/issues/171133218
|
2020-10-22 22:10:08 +08:00
|
|
|
output.versionCodeOverride = baseVariantVersion + baseAbiVersionCode
|
|
|
|
print "ABI " + output.getFilter(OutputFile.ABI) + " \t-> VersionCode = " + output.versionCodeOverride + "\n"
|
2019-08-07 17:46:38 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-25 14:58:48 +08:00
|
|
|
|
|
|
|
// The following argument makes the Android Test Orchestrator run its
|
|
|
|
// "pm clear" command after each test invocation. This command ensures
|
|
|
|
// that the app's state is completely cleared between tests.
|
|
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
|
|
|
}
|
|
|
|
|
|
|
|
testOptions {
|
|
|
|
// Disables animations during instrumented tests you run from the command line…
|
|
|
|
// This property does not affect tests that you run using Android Studio.”
|
|
|
|
animationsDisabled = true
|
|
|
|
|
|
|
|
execution 'ANDROIDX_TEST_ORCHESTRATOR'
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
2019-03-14 00:00:30 +08:00
|
|
|
|
2019-06-07 16:17:14 +08:00
|
|
|
signingConfigs {
|
|
|
|
debug {
|
|
|
|
keyAlias 'androiddebugkey'
|
|
|
|
keyPassword 'android'
|
|
|
|
storeFile file('./signature/debug.keystore')
|
|
|
|
storePassword 'android'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
buildTypes {
|
2019-03-13 22:11:02 +08:00
|
|
|
debug {
|
2019-07-11 23:59:07 +08:00
|
|
|
applicationIdSuffix ".debug"
|
2020-06-30 19:52:50 +08:00
|
|
|
resValue "string", "app_name", "Element dbg"
|
2019-07-11 23:59:07 +08:00
|
|
|
|
2019-03-13 22:11:02 +08:00
|
|
|
resValue "bool", "debug_mode", "true"
|
2019-04-03 00:08:43 +08:00
|
|
|
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
|
2020-09-08 21:38:00 +08:00
|
|
|
// Set to true if you want to enable strict mode in debug
|
|
|
|
buildConfigField "boolean", "ENABLE_STRICT_MODE_LOGS", "false"
|
2019-06-07 16:17:14 +08:00
|
|
|
|
|
|
|
signingConfig signingConfigs.debug
|
2019-03-13 22:11:02 +08:00
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
release {
|
2021-02-08 19:39:35 +08:00
|
|
|
resValue "string", "app_name", "Element"
|
2019-07-11 23:59:07 +08:00
|
|
|
|
2019-03-13 22:11:02 +08:00
|
|
|
resValue "bool", "debug_mode", "false"
|
2019-04-03 00:08:43 +08:00
|
|
|
buildConfigField "boolean", "LOW_PRIVACY_LOG_ENABLE", "false"
|
2020-09-08 21:38:00 +08:00
|
|
|
buildConfigField "boolean", "ENABLE_STRICT_MODE_LOGS", "false"
|
2019-03-13 22:11:02 +08:00
|
|
|
|
2020-06-12 01:37:20 +08:00
|
|
|
postprocessing {
|
|
|
|
removeUnusedCode true
|
|
|
|
removeUnusedResources true
|
2020-06-16 17:18:33 +08:00
|
|
|
// We do not activate obfuscation as it makes it hard then to read crash reports, and it's a bit useless on an open source project :)
|
2020-06-12 01:37:20 +08:00
|
|
|
obfuscate false
|
|
|
|
optimizeCode true
|
|
|
|
proguardFiles 'proguard-rules.pro'
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
}
|
2018-12-13 18:00:50 +08:00
|
|
|
|
2019-03-14 00:00:30 +08:00
|
|
|
flavorDimensions "store"
|
|
|
|
|
|
|
|
productFlavors {
|
2019-03-19 21:38:15 +08:00
|
|
|
gplay {
|
2021-06-18 18:26:30 +08:00
|
|
|
apply plugin: 'com.google.gms.google-services'
|
2021-06-18 23:23:10 +08:00
|
|
|
afterEvaluate {
|
|
|
|
tasks.matching { it.name.contains("GoogleServices") && !it.name.contains("Gplay") }*.enabled = false
|
|
|
|
}
|
2021-06-18 18:26:30 +08:00
|
|
|
|
2019-03-14 00:00:30 +08:00
|
|
|
dimension "store"
|
2020-12-09 18:17:49 +08:00
|
|
|
isDefault = true
|
2020-01-20 22:58:12 +08:00
|
|
|
versionName "${versionMajor}.${versionMinor}.${versionPatch}${getGplayVersionSuffix()}"
|
|
|
|
|
2020-01-08 22:57:35 +08:00
|
|
|
resValue "bool", "isGplay", "true"
|
2019-03-14 00:00:30 +08:00
|
|
|
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
|
|
|
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\""
|
|
|
|
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\""
|
|
|
|
}
|
|
|
|
|
2019-03-19 21:38:15 +08:00
|
|
|
fdroid {
|
2019-03-14 00:00:30 +08:00
|
|
|
dimension "store"
|
|
|
|
|
2020-01-20 22:58:12 +08:00
|
|
|
versionName "${versionMajor}.${versionMinor}.${versionPatch}${getFdroidVersionSuffix()}"
|
|
|
|
|
2020-01-08 22:57:35 +08:00
|
|
|
resValue "bool", "isGplay", "false"
|
2019-03-14 00:00:30 +08:00
|
|
|
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
|
|
|
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\""
|
|
|
|
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
2019-04-03 18:04:24 +08:00
|
|
|
lintConfig file("lint.xml")
|
2020-06-27 03:08:41 +08:00
|
|
|
|
2021-09-02 16:42:56 +08:00
|
|
|
checkDependencies true
|
2020-07-02 17:29:00 +08:00
|
|
|
abortOnError true
|
2019-03-14 00:00:30 +08:00
|
|
|
}
|
|
|
|
|
2018-12-13 18:00:50 +08:00
|
|
|
compileOptions {
|
2021-09-15 17:28:58 +08:00
|
|
|
sourceCompatibility versions.sourceCompat
|
|
|
|
targetCompatibility versions.targetCompat
|
2018-12-13 18:00:50 +08:00
|
|
|
}
|
2019-09-27 17:42:46 +08:00
|
|
|
|
|
|
|
kotlinOptions {
|
2021-09-02 15:50:34 +08:00
|
|
|
jvmTarget = "11"
|
2019-09-27 17:42:46 +08:00
|
|
|
}
|
2020-04-28 20:15:23 +08:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java.srcDirs += "src/sharedTest/java"
|
|
|
|
}
|
|
|
|
}
|
2020-12-16 07:46:52 +08:00
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
|
2021-09-28 00:16:36 +08:00
|
|
|
configurations {
|
|
|
|
// videocache includes a sl4j logger which causes mockk to attempt to call the static android Log
|
|
|
|
testImplementation.exclude group: 'org.slf4j', module: 'slf4j-android'
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
dependencies {
|
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")
|
2021-10-07 17:11:44 +08:00
|
|
|
implementation project(":matrix-sdk-android-flow")
|
2019-12-11 17:44:51 +08:00
|
|
|
implementation project(":diff-match-patch")
|
2020-03-20 17:12:59 +08:00
|
|
|
implementation project(":multipicker")
|
2020-07-06 03:47:38 +08:00
|
|
|
implementation project(":attachment-viewer")
|
2021-06-15 18:23:54 +08:00
|
|
|
implementation project(":library:ui-styles")
|
2021-06-10 02:49:56 +08:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.jetbrains.kotlinStdlibJdk7
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.jetbrains.coroutinesCore
|
|
|
|
implementation libs.jetbrains.coroutinesAndroid
|
2019-01-17 22:04:57 +08:00
|
|
|
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.recyclerview
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.androidx.appCompat
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.fragmentKtx
|
|
|
|
implementation libs.androidx.constraintLayout
|
2021-02-20 05:52:07 +08:00
|
|
|
implementation "androidx.sharetarget:sharetarget:1.1.0"
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.core
|
2021-09-17 21:29:35 +08:00
|
|
|
implementation "androidx.media:media:1.4.2"
|
2021-06-02 18:03:46 +08:00
|
|
|
implementation "androidx.transition:transition:1.4.1"
|
2019-01-25 01:04:55 +08:00
|
|
|
|
2019-10-02 02:11:15 +08:00
|
|
|
implementation "org.threeten:threetenbp:1.4.0:no-tzdb"
|
2021-02-20 07:23:10 +08:00
|
|
|
implementation "com.gabrielittner.threetenbp:lazythreetenbp:0.9.0"
|
2019-10-02 02:11:15 +08:00
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.squareup.moshi
|
|
|
|
kapt libs.squareup.moshiKotlin
|
|
|
|
implementation libs.androidx.lifecycleExtensions
|
|
|
|
implementation libs.androidx.lifecycleLivedata
|
|
|
|
|
2021-09-20 22:54:39 +08:00
|
|
|
implementation libs.androidx.datastore
|
|
|
|
implementation libs.androidx.datastorepreferences
|
|
|
|
|
2019-03-29 00:28:20 +08:00
|
|
|
|
|
|
|
// Log
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.jakewharton.timber
|
2019-03-29 00:28:20 +08:00
|
|
|
|
|
|
|
// Debug
|
2021-03-31 14:58:20 +08:00
|
|
|
implementation 'com.facebook.stetho:stetho:1.6.0'
|
2018-10-16 21:52:30 +08:00
|
|
|
|
2019-11-21 19:11:58 +08:00
|
|
|
// Phone number https://github.com/google/libphonenumber
|
2021-10-07 07:07:32 +08:00
|
|
|
implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.34'
|
2019-11-21 19:11:58 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// rx
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.rx.rxKotlin
|
|
|
|
implementation libs.rx.rxAndroid
|
2019-09-27 19:49:55 +08:00
|
|
|
implementation 'com.jakewharton.rxrelay2:rxrelay:2.1.1'
|
2019-07-16 21:01:14 +08:00
|
|
|
// RXBinding
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.jakewharton.rxbinding
|
|
|
|
implementation libs.jakewharton.rxbindingAppcompat
|
|
|
|
implementation libs.jakewharton.rxbindingMaterial
|
2021-09-16 01:22:52 +08:00
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.airbnb.epoxy
|
|
|
|
implementation libs.airbnb.epoxyGlide
|
|
|
|
kapt libs.airbnb.epoxyProcessor
|
|
|
|
implementation libs.airbnb.epoxyPaging
|
2021-10-01 01:52:37 +08:00
|
|
|
implementation libs.airbnb.mavericks
|
2021-10-08 22:45:29 +08:00
|
|
|
//TODO: remove when entirely migrated to Flow
|
2021-10-01 01:52:37 +08:00
|
|
|
implementation libs.airbnb.mavericksRx
|
2018-10-19 21:30:40 +08:00
|
|
|
|
2019-04-03 00:08:43 +08:00
|
|
|
// Work
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.work
|
2019-04-03 00:08:43 +08:00
|
|
|
|
2019-07-30 20:51:14 +08:00
|
|
|
// Paging
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.androidx.pagingRuntimeKtx
|
2019-07-30 20:51:14 +08:00
|
|
|
|
2019-06-19 00:29:48 +08:00
|
|
|
// Functional Programming
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.arrow.core
|
2018-12-30 02:57:38 +08:00
|
|
|
|
2019-03-28 18:53:28 +08:00
|
|
|
// Pref
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.androidx.preferenceKtx
|
2019-03-28 18:53:28 +08:00
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// UI
|
2018-10-30 00:20:08 +08:00
|
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.google.material
|
2019-02-20 18:39:25 +08:00
|
|
|
implementation 'me.gujun.android:span:1.7'
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.markwon.core
|
|
|
|
implementation libs.markwon.html
|
2021-02-20 05:52:08 +08:00
|
|
|
implementation 'com.googlecode.htmlcompressor:htmlcompressor:1.5.2'
|
2019-06-03 23:53:04 +08:00
|
|
|
implementation 'me.saket:better-link-movement-method:2.2.0'
|
2021-02-20 07:21:14 +08:00
|
|
|
implementation 'com.google.android:flexbox:2.0.1'
|
2021-09-16 01:22:52 +08:00
|
|
|
implementation libs.androidx.autoFill
|
2020-12-02 00:50:59 +08:00
|
|
|
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
2020-12-02 19:08:29 +08:00
|
|
|
implementation 'com.github.vector-im:PFLockScreen-Android:1.0.0-beta12'
|
2021-07-02 01:40:36 +08:00
|
|
|
implementation 'com.github.hyuwah:DraggableView:1.0.0'
|
2021-07-01 15:47:41 +08:00
|
|
|
implementation 'com.github.Armen101:AudioRecordView:1.0.5'
|
2019-02-22 02:21:08 +08:00
|
|
|
|
2020-06-05 07:06:52 +08:00
|
|
|
// Custom Tab
|
2021-02-20 18:27:17 +08:00
|
|
|
implementation 'androidx.browser:browser:1.3.0'
|
2020-06-05 07:06:52 +08:00
|
|
|
|
2019-05-16 16:23:57 +08:00
|
|
|
// Passphrase strength helper
|
2021-06-08 14:12:38 +08:00
|
|
|
implementation 'com.nulab-inc:zxcvbn:1.5.2'
|
2019-05-16 16:23:57 +08:00
|
|
|
|
2021-07-15 23:04:10 +08:00
|
|
|
// To convert voice message on old platforms
|
2021-09-27 22:22:00 +08:00
|
|
|
implementation 'com.arthenica:ffmpeg-kit-audio:4.5.LTS'
|
2021-07-15 23:04:10 +08:00
|
|
|
|
2021-09-20 22:54:39 +08:00
|
|
|
// Alerter
|
2021-02-20 18:27:05 +08:00
|
|
|
implementation 'com.tapadoo.android:alerter:7.0.1'
|
2019-05-16 16:23:57 +08:00
|
|
|
|
2019-04-08 21:51:35 +08:00
|
|
|
implementation 'com.otaliastudios:autocomplete:1.1.0'
|
|
|
|
|
2019-03-28 18:53:28 +08:00
|
|
|
// Shake detection
|
2021-09-29 07:06:09 +08:00
|
|
|
implementation 'com.squareup:seismic:1.0.3'
|
2019-03-28 18:53:28 +08:00
|
|
|
|
2019-03-12 15:29:49 +08:00
|
|
|
// Image Loading
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.github.bigImageViewer
|
|
|
|
implementation libs.github.glideImageLoader
|
|
|
|
implementation libs.github.progressPieIndicator
|
|
|
|
implementation libs.github.glideImageViewFactory
|
2020-07-06 03:47:38 +08:00
|
|
|
|
|
|
|
// implementation 'com.github.MikeOrtiz:TouchImageView:3.0.2'
|
2021-04-30 15:06:20 +08:00
|
|
|
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
|
2020-07-06 03:47:38 +08:00
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
implementation libs.github.glide
|
|
|
|
kapt libs.github.glideCompiler
|
2019-04-12 19:46:59 +08:00
|
|
|
implementation 'com.danikula:videocache:2.7.1'
|
2021-06-01 03:10:36 +08:00
|
|
|
implementation 'com.github.yalantis:ucrop:2.2.7'
|
2018-10-30 00:20:08 +08:00
|
|
|
|
2019-04-03 00:08:43 +08:00
|
|
|
// Badge for compatibility
|
2019-09-27 19:49:55 +08:00
|
|
|
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
|
2019-04-03 00:08:43 +08:00
|
|
|
|
2020-12-09 19:34:22 +08:00
|
|
|
// Chat effects
|
2021-05-05 15:12:55 +08:00
|
|
|
implementation 'nl.dionsegijn:konfetti:1.3.2'
|
2021-05-12 22:50:50 +08:00
|
|
|
implementation 'com.github.jetradarmobile:android-snowfall:1.2.1'
|
2018-12-30 02:57:38 +08:00
|
|
|
// DI
|
2021-09-15 17:28:58 +08:00
|
|
|
implementation libs.dagger.dagger
|
|
|
|
kapt libs.dagger.daggerCompiler
|
2018-10-03 23:56:33 +08:00
|
|
|
|
2019-04-03 00:08:43 +08:00
|
|
|
// gplay flavor only
|
2021-05-12 13:58:36 +08:00
|
|
|
gplayImplementation('com.google.firebase:firebase-messaging:22.0.0') {
|
2019-06-27 16:42:22 +08:00
|
|
|
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-03 00:08:43 +08:00
|
|
|
|
2020-01-08 22:57:35 +08:00
|
|
|
// OSS License, gplay flavor only
|
|
|
|
gplayImplementation 'com.google.android.gms:play-services-oss-licenses:17.0.0'
|
|
|
|
|
2020-07-06 21:59:49 +08:00
|
|
|
implementation "androidx.emoji:emoji-appcompat:1.1.0"
|
2019-08-19 02:26:53 +08:00
|
|
|
|
2021-10-01 01:52:37 +08:00
|
|
|
implementation ('com.github.BillCarsonFr:JsonViewer:0.6'){
|
|
|
|
exclude group: 'com.airbnb.android'
|
|
|
|
}
|
2020-02-12 23:48:11 +08:00
|
|
|
|
2020-08-12 20:02:00 +08:00
|
|
|
// WebRTC
|
2020-08-15 03:33:25 +08:00
|
|
|
// org.webrtc:google-webrtc is for development purposes only
|
|
|
|
// implementation 'org.webrtc:google-webrtc:1.0.+'
|
2021-02-10 19:15:32 +08:00
|
|
|
implementation('com.facebook.react:react-native-webrtc:1.87.3-jitsi-6624067@aar')
|
2020-05-05 17:46:21 +08:00
|
|
|
|
2021-02-10 23:55:07 +08:00
|
|
|
// Jitsi
|
2021-04-07 02:50:43 +08:00
|
|
|
implementation('org.jitsi.react:jitsi-meet-sdk:3.1.0') {
|
2021-05-20 00:19:49 +08:00
|
|
|
exclude group: 'com.google.firebase'
|
|
|
|
exclude group: 'com.google.android.gms'
|
|
|
|
exclude group: 'com.android.installreferrer'
|
2021-04-07 02:50:43 +08:00
|
|
|
}
|
2021-02-10 23:55:07 +08:00
|
|
|
|
2020-01-22 21:19:04 +08:00
|
|
|
// QR-code
|
2020-02-01 20:52:33 +08:00
|
|
|
// Stick to 3.3.3 because of https://github.com/zxing/zxing/issues/1170
|
2021-02-20 05:52:06 +08:00
|
|
|
implementation 'com.google.zxing:core:3.4.1'
|
2020-01-22 21:19:04 +08:00
|
|
|
implementation 'me.dm7.barcodescanner:zxing:1.9.13'
|
|
|
|
|
2020-12-09 23:45:33 +08:00
|
|
|
// Emoji Keyboard
|
2021-09-28 17:29:30 +08:00
|
|
|
implementation libs.vanniktech.emojiMaterial
|
|
|
|
implementation libs.vanniktech.emojiGoogle
|
2020-12-09 23:45:33 +08:00
|
|
|
|
2021-01-07 18:15:37 +08:00
|
|
|
implementation 'im.dlg:android-dialer:1.2.5'
|
|
|
|
|
2021-05-20 00:19:49 +08:00
|
|
|
// JWT
|
2021-09-17 19:58:44 +08:00
|
|
|
api libs.jsonwebtoken.jjwtApi
|
|
|
|
runtimeOnly libs.jsonwebtoken.jjwtImpl
|
|
|
|
runtimeOnly(libs.jsonwebtoken.jjwtOrgjson) {
|
2021-05-20 00:19:49 +08:00
|
|
|
exclude group: 'org.json', module: 'json' //provided by Android natively
|
|
|
|
}
|
|
|
|
implementation 'commons-codec:commons-codec:1.15'
|
|
|
|
|
|
|
|
|
2018-12-30 02:57:38 +08:00
|
|
|
// TESTS
|
2021-09-16 01:22:52 +08:00
|
|
|
testImplementation libs.tests.junit
|
2021-09-17 19:58:44 +08:00
|
|
|
testImplementation libs.tests.kluent
|
2021-09-28 00:16:36 +08:00
|
|
|
testImplementation libs.mockk.mockk
|
2020-04-28 20:15:23 +08:00
|
|
|
// Plant Timber tree for test
|
2021-09-17 19:58:44 +08:00
|
|
|
testImplementation libs.tests.timberJunitRule
|
2020-02-07 06:22:07 +08:00
|
|
|
|
2020-06-12 01:40:46 +08:00
|
|
|
// Activate when you want to check for leaks, from time to time.
|
|
|
|
//debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.3'
|
2020-06-09 01:46:55 +08:00
|
|
|
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.androidx.testCore
|
|
|
|
androidTestImplementation libs.androidx.testRunner
|
|
|
|
androidTestImplementation libs.androidx.testRules
|
2021-09-16 01:22:52 +08:00
|
|
|
androidTestImplementation libs.androidx.junit
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.androidx.espressoCore
|
|
|
|
androidTestImplementation libs.androidx.espressoContrib
|
|
|
|
androidTestImplementation libs.androidx.espressoIntents
|
|
|
|
androidTestImplementation libs.tests.kluent
|
|
|
|
androidTestImplementation libs.androidx.coreTesting
|
2020-04-28 20:15:23 +08:00
|
|
|
// Plant Timber tree for test
|
2021-09-17 19:58:44 +08:00
|
|
|
androidTestImplementation libs.tests.timberJunitRule
|
2020-11-04 06:22:12 +08:00
|
|
|
// "The one who serves a great Espresso"
|
2021-09-24 15:53:52 +08:00
|
|
|
androidTestImplementation('com.adevinta.android:barista:4.2.0') {
|
2020-11-04 06:22:12 +08:00
|
|
|
exclude group: 'org.jetbrains.kotlin'
|
|
|
|
}
|
2021-09-24 03:24:16 +08:00
|
|
|
androidTestUtil libs.androidx.orchestrator
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|