2014-10-22 16:38:44 +00:00
|
|
|
buildscript {
|
2023-02-15 20:04:54 +00:00
|
|
|
|
|
|
|
ext {
|
|
|
|
room_version = "2.5.0"
|
|
|
|
navVersion = '2.5.3'
|
|
|
|
appcompatVersion = "1.6.1"
|
|
|
|
lifecycleVersion = "2.2.0"
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
repositories {
|
2017-12-09 15:19:56 +00:00
|
|
|
google()
|
2021-05-13 09:05:26 +00:00
|
|
|
mavenCentral()
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-02-09 10:01:25 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.1'
|
2023-02-05 18:32:32 +00:00
|
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.13.0"
|
2023-02-15 20:04:54 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion"
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-26 14:14:38 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2023-01-10 09:55:38 +00:00
|
|
|
apply plugin: "com.diffplug.spotless"
|
2023-02-15 20:04:54 +00:00
|
|
|
apply plugin: "androidx.navigation.safeargs"
|
2023-01-10 09:55:38 +00:00
|
|
|
|
2014-10-22 19:39:53 +00:00
|
|
|
|
|
|
|
repositories {
|
2018-06-10 17:51:41 +00:00
|
|
|
google()
|
2016-08-25 20:53:27 +00:00
|
|
|
mavenCentral()
|
2021-05-13 09:05:26 +00:00
|
|
|
jcenter()
|
2014-10-22 19:39:53 +00:00
|
|
|
}
|
|
|
|
|
2016-02-12 10:39:27 +00:00
|
|
|
configurations {
|
2017-12-09 15:19:56 +00:00
|
|
|
playstoreImplementation
|
2022-02-23 09:37:03 +00:00
|
|
|
freeImplementation
|
|
|
|
conversationsFreeImplementation
|
|
|
|
conversationsPlaystorImplementation
|
|
|
|
conversationsPlaystoreImplementation
|
|
|
|
quicksyPlaystoreImplementation
|
|
|
|
quicksyPlaystoreImplementation
|
|
|
|
quicksyFreeImplementation
|
2018-10-28 11:34:17 +00:00
|
|
|
quicksyImplementation
|
2016-02-12 10:39:27 +00:00
|
|
|
}
|
|
|
|
|
2023-01-10 09:55:38 +00:00
|
|
|
spotless {
|
2023-02-05 18:32:32 +00:00
|
|
|
ratchetFrom '2.12.2'
|
2023-01-10 09:55:38 +00:00
|
|
|
java {
|
|
|
|
target '**/*.java'
|
|
|
|
googleJavaFormat('1.8').aosp().reflowLongStrings()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 22:17:49 +00:00
|
|
|
dependencies {
|
2023-01-10 10:05:03 +00:00
|
|
|
|
|
|
|
// Conversations 3.0 dependencies
|
|
|
|
|
2023-01-19 17:20:31 +00:00
|
|
|
implementation project(':libs:annotation')
|
|
|
|
annotationProcessor project(':libs:annotation-processor')
|
|
|
|
|
2023-01-10 10:05:03 +00:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.8'
|
|
|
|
|
2023-02-15 20:04:54 +00:00
|
|
|
implementation "androidx.appcompat:appcompat:$rootProject.ext.appcompatVersion"
|
|
|
|
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$rootProject.ext.lifecycleVersion"
|
|
|
|
|
2023-01-10 10:05:03 +00:00
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
|
|
implementation "androidx.room:room-guava:$room_version"
|
|
|
|
|
2023-02-15 20:04:54 +00:00
|
|
|
implementation "androidx.navigation:navigation-fragment:$rootProject.ext.navVersion"
|
|
|
|
implementation "androidx.navigation:navigation-ui:$rootProject.ext.navVersion"
|
|
|
|
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
|
|
|
|
|
2023-01-13 09:59:23 +00:00
|
|
|
implementation "androidx.security:security-crypto:1.0.0"
|
|
|
|
|
2023-01-24 13:08:50 +00:00
|
|
|
|
|
|
|
implementation 'org.slf4j:slf4j-api:1.7.36'
|
|
|
|
implementation 'com.github.tony19:logback-android:2.0.1'
|
|
|
|
|
2023-01-14 10:52:07 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
testImplementation 'org.robolectric:robolectric:4.9'
|
2023-02-11 17:42:09 +00:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
2023-01-10 10:05:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
// legacy dependencies. Ideally everything below should be carefully reviewed and eventually moved up
|
|
|
|
|
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
|
|
|
|
2022-12-18 08:42:45 +00:00
|
|
|
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.1') {
|
2018-05-20 19:13:53 +00:00
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
2018-12-13 18:29:46 +00:00
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
2018-05-20 19:13:53 +00:00
|
|
|
}
|
2022-02-23 09:37:03 +00:00
|
|
|
conversationsPlaystoreImplementation("com.android.installreferrer:installreferrer:2.2")
|
|
|
|
quicksyPlaystoreImplementation 'com.google.android.gms:play-services-auth-api-phone:18.0.1'
|
2017-12-09 15:19:56 +00:00
|
|
|
implementation 'org.sufficientlysecure:openpgp-api:10.0'
|
2021-01-18 20:49:31 +00:00
|
|
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
|
2023-02-15 20:04:54 +00:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.6'
|
2021-01-18 17:26:46 +00:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2021-01-18 20:49:31 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2023-02-05 18:32:32 +00:00
|
|
|
implementation 'com.google.android.material:material:1.8.0'
|
2022-02-23 09:37:03 +00:00
|
|
|
|
2022-08-22 09:17:30 +00:00
|
|
|
implementation "androidx.emoji2:emoji2:1.2.0"
|
|
|
|
freeImplementation "androidx.emoji2:emoji2-bundled:1.2.0"
|
2022-02-23 09:37:03 +00:00
|
|
|
|
2020-03-09 18:12:30 +00:00
|
|
|
implementation 'org.bouncycastle:bcmail-jdk15on:1.64'
|
2019-08-29 07:46:33 +00:00
|
|
|
//zxing stopped supporting Java 7 so we have to stick with 3.3.3
|
|
|
|
//https://github.com/zxing/zxing/issues/1170
|
|
|
|
implementation 'com.google.zxing:core:3.3.3'
|
2017-12-09 15:19:56 +00:00
|
|
|
implementation 'de.measite.minidns:minidns-hla:0.2.4'
|
2018-09-13 16:47:30 +00:00
|
|
|
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
|
2017-12-09 15:19:56 +00:00
|
|
|
implementation 'org.whispersystems:signal-protocol-java:2.6.2'
|
|
|
|
implementation 'com.makeramen:roundedimageview:2.3.0'
|
|
|
|
implementation "com.wefika:flowlayout:0.4.1"
|
2022-10-01 07:25:41 +00:00
|
|
|
//noinspection GradleDependency
|
2022-10-01 07:21:38 +00:00
|
|
|
implementation 'com.otaliastudios:transcoder:0.9.1'
|
2021-09-15 09:38:03 +00:00
|
|
|
|
2022-03-11 07:34:05 +00:00
|
|
|
implementation 'org.jxmpp:jxmpp-jid:1.0.3'
|
|
|
|
implementation 'org.osmdroid:osmdroid-android:6.1.11'
|
2018-08-19 20:33:20 +00:00
|
|
|
implementation 'org.hsluv:hsluv:0.2'
|
2021-05-13 09:05:26 +00:00
|
|
|
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
2018-11-20 16:25:31 +00:00
|
|
|
implementation 'me.drakeet.support:toastcompat:1.1.0'
|
2021-10-20 07:52:10 +00:00
|
|
|
implementation "com.leinardi.android:speed-dial:3.2.0"
|
2021-02-11 17:28:46 +00:00
|
|
|
|
|
|
|
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
|
|
|
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
2022-08-04 09:32:48 +00:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:4.10.0"
|
2021-03-22 14:26:13 +00:00
|
|
|
|
2022-08-22 09:29:04 +00:00
|
|
|
implementation 'com.google.guava:guava:31.1-android'
|
2022-06-14 06:52:11 +00:00
|
|
|
quicksyImplementation 'io.michaelrocks:libphonenumber-android:8.12.49'
|
2022-12-30 11:26:00 +00:00
|
|
|
implementation 'im.conversations.webrtc:webrtc-android:104.0.0'
|
2014-10-22 22:17:49 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 19:25:44 +00:00
|
|
|
ext {
|
2017-08-02 15:42:21 +00:00
|
|
|
preDexEnabled = System.getProperty("pre-dex", "true")
|
2020-04-19 18:21:31 +00:00
|
|
|
abiCodes = ['armeabi-v7a': 1, 'x86': 2, 'x86_64': 3, 'arm64-v8a': 4]
|
2016-04-04 19:25:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 19:39:53 +00:00
|
|
|
android {
|
2022-05-13 06:28:06 +00:00
|
|
|
namespace 'eu.siacs.conversations'
|
2023-01-16 09:39:36 +00:00
|
|
|
compileSdkVersion 33
|
2016-08-25 20:53:27 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2022-12-28 12:50:20 +00:00
|
|
|
minSdkVersion 23
|
2023-01-16 09:39:36 +00:00
|
|
|
targetSdkVersion 33
|
2022-12-28 12:50:20 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "3.0.0-alpha"
|
2016-08-25 20:53:27 +00:00
|
|
|
archivesBaseName += "-$versionName"
|
2022-12-28 12:50:20 +00:00
|
|
|
applicationId "im.conversations.android"
|
2018-02-21 09:30:38 +00:00
|
|
|
resValue "string", "applicationId", applicationId
|
2021-04-30 08:54:36 +00:00
|
|
|
def appName = "Conversations"
|
|
|
|
resValue "string", "app_name", appName
|
2022-12-18 08:42:45 +00:00
|
|
|
buildConfigField "String", "APP_NAME", "\"$appName\""
|
2023-01-10 10:05:03 +00:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-11 17:42:09 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 10:52:07 +00:00
|
|
|
testOptions {
|
|
|
|
unitTests {
|
|
|
|
includeAndroidResources = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-19 18:21:31 +00:00
|
|
|
splits {
|
|
|
|
abi {
|
2020-04-22 16:42:42 +00:00
|
|
|
universalApk true
|
2020-04-19 18:21:31 +00:00
|
|
|
enable true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 14:26:13 +00:00
|
|
|
configurations {
|
2021-08-24 08:13:03 +00:00
|
|
|
implementation.exclude group: 'org.jetbrains' , module:'annotations'
|
2021-03-22 14:26:13 +00:00
|
|
|
}
|
|
|
|
|
2018-02-17 17:58:56 +00:00
|
|
|
dataBinding {
|
|
|
|
enabled true
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
compileOptions {
|
2023-01-10 10:05:03 +00:00
|
|
|
coreLibraryDesugaringEnabled true
|
2022-12-28 12:50:20 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
|
|
|
|
2023-02-11 17:42:09 +00:00
|
|
|
|
2022-02-23 09:37:03 +00:00
|
|
|
flavorDimensions("mode", "distribution")
|
2017-12-09 15:19:56 +00:00
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
productFlavors {
|
2018-10-08 12:26:12 +00:00
|
|
|
|
2018-10-28 11:34:17 +00:00
|
|
|
quicksy {
|
2018-10-08 12:26:12 +00:00
|
|
|
dimension "mode"
|
2018-10-30 19:27:26 +00:00
|
|
|
applicationId = "im.quicksy.client"
|
2018-10-08 12:26:12 +00:00
|
|
|
resValue "string", "applicationId", applicationId
|
2021-04-30 08:54:36 +00:00
|
|
|
|
|
|
|
def appName = "Quicksy"
|
|
|
|
resValue "string", "app_name", appName
|
2022-12-18 08:42:45 +00:00
|
|
|
buildConfigField "String", "APP_NAME", "\"$appName\""
|
2018-10-08 12:26:12 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 11:34:17 +00:00
|
|
|
conversations {
|
2018-10-08 12:26:12 +00:00
|
|
|
dimension "mode"
|
|
|
|
}
|
|
|
|
|
2017-12-09 15:19:56 +00:00
|
|
|
playstore {
|
|
|
|
dimension "distribution"
|
2022-02-23 10:03:56 +00:00
|
|
|
versionNameSuffix "+playstore"
|
2017-12-09 15:19:56 +00:00
|
|
|
}
|
|
|
|
free {
|
|
|
|
dimension "distribution"
|
2022-02-23 10:03:56 +00:00
|
|
|
versionNameSuffix "+free"
|
2017-12-09 15:19:56 +00:00
|
|
|
}
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
2017-12-09 15:14:43 +00:00
|
|
|
|
2018-10-08 12:26:12 +00:00
|
|
|
sourceSets {
|
2022-02-23 09:37:03 +00:00
|
|
|
quicksyFree {
|
2021-01-19 14:45:41 +00:00
|
|
|
java {
|
|
|
|
srcDir 'src/quicksyFree/java'
|
|
|
|
}
|
|
|
|
}
|
2022-02-23 09:37:03 +00:00
|
|
|
quicksyPlaystore {
|
2021-01-19 14:45:41 +00:00
|
|
|
java {
|
|
|
|
srcDir 'src/quicksyPlaystore/java'
|
|
|
|
}
|
2018-11-03 15:14:30 +00:00
|
|
|
res {
|
|
|
|
srcDir 'src/quicksyPlaystore/res'
|
2018-10-08 12:26:12 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-23 09:37:03 +00:00
|
|
|
conversationsFree {
|
2018-10-08 12:26:12 +00:00
|
|
|
java {
|
2020-01-11 10:08:09 +00:00
|
|
|
srcDir 'src/conversationsFree/java'
|
|
|
|
}
|
|
|
|
}
|
2022-02-23 09:37:03 +00:00
|
|
|
conversationsPlaystore {
|
2020-01-11 10:08:09 +00:00
|
|
|
java {
|
|
|
|
srcDir 'src/conversationsPlaystore/java'
|
|
|
|
}
|
2018-11-03 15:14:30 +00:00
|
|
|
res {
|
|
|
|
srcDir 'src/conversationsPlaystore/res'
|
2018-10-08 12:26:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 13:25:49 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
shrinkResources true
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
2023-02-11 17:42:09 +00:00
|
|
|
//useProguard false
|
|
|
|
//shrinkResources true
|
|
|
|
//minifyEnabled true
|
|
|
|
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-12-14 13:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-08 12:26:12 +00:00
|
|
|
if (new File("signing.properties").exists()) {
|
2017-12-09 15:14:43 +00:00
|
|
|
Properties props = new Properties()
|
|
|
|
props.load(new FileInputStream(file("signing.properties")))
|
|
|
|
|
2016-08-25 20:53:27 +00:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
2017-12-09 15:14:43 +00:00
|
|
|
storeFile file(props['keystore'])
|
|
|
|
storePassword props['keystore.password']
|
|
|
|
keyAlias props['keystore.alias']
|
|
|
|
keyPassword props['keystore.password']
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes.release.signingConfig = signingConfigs.release
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
if (getPlugins().hasPlugin('android') ||
|
|
|
|
getPlugins().hasPlugin('android-library')) {
|
|
|
|
|
|
|
|
configure(android.lintOptions) {
|
|
|
|
disable 'AndroidGradlePluginVersion', 'MissingTranslation'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
packagingOptions {
|
2022-02-09 11:26:39 +00:00
|
|
|
resources {
|
|
|
|
excludes += ['META-INF/BCKEY.DSA', 'META-INF/BCKEY.SF']
|
|
|
|
}
|
2016-08-25 20:53:27 +00:00
|
|
|
}
|
2022-02-09 11:26:39 +00:00
|
|
|
lint {
|
|
|
|
disable 'MissingTranslation', 'InvalidPackage', 'AppCompatResource'
|
|
|
|
}
|
|
|
|
|
2020-04-19 18:21:31 +00:00
|
|
|
android.applicationVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
2021-10-03 15:01:51 +00:00
|
|
|
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
|
2020-04-19 18:21:31 +00:00
|
|
|
if (baseAbiVersionCode != null) {
|
2021-11-03 14:59:05 +00:00
|
|
|
output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
|
|
|
|
} else {
|
|
|
|
output.versionCodeOverride = 100 * project.android.defaultConfig.versionCode
|
2020-04-19 18:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-04-22 16:42:42 +00:00
|
|
|
}
|