2014-10-22 18:38:44 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all
|
|
|
|
// sub-projects/modules.
|
|
|
|
buildscript {
|
2016-08-25 22:53:27 +02:00
|
|
|
repositories {
|
2020-04-29 12:40:31 +02:00
|
|
|
google()
|
2021-09-19 04:14:57 +02:00
|
|
|
mavenCentral()
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-11-26 14:23:56 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.2.0-rc03'
|
2023-09-22 01:14:12 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
|
2023-09-21 23:31:23 +02:00
|
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.14.0"
|
2023-09-22 00:37:33 +02:00
|
|
|
classpath 'com.novoda:bintray-release:0.8.0'
|
2022-07-19 10:17:03 +02:00
|
|
|
}
|
2014-10-22 18:38:44 +02:00
|
|
|
}
|
|
|
|
|
2023-02-11 03:32:33 +01:00
|
|
|
plugins {
|
|
|
|
id 'org.ajoberstar.grgit' version '4.1.1'
|
|
|
|
}
|
|
|
|
|
2014-10-26 15:14:38 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2023-01-10 10:55:38 +01:00
|
|
|
apply plugin: "com.diffplug.spotless"
|
2014-10-22 21:39:53 +02:00
|
|
|
|
2020-04-29 12:40:31 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2020-06-07 10:26:58 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2020-04-29 12:40:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-22 21:39:53 +02:00
|
|
|
repositories {
|
2018-06-10 19:51:41 +02:00
|
|
|
google()
|
2016-08-25 22:53:27 +02:00
|
|
|
mavenCentral()
|
2023-05-20 01:54:21 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2023-09-22 01:14:12 +02:00
|
|
|
jcenter()
|
2014-10-22 21:39:53 +02:00
|
|
|
}
|
|
|
|
|
2016-02-12 11:39:27 +01:00
|
|
|
configurations {
|
2017-12-09 16:19:56 +01:00
|
|
|
playstoreImplementation
|
2020-04-29 12:40:31 +02:00
|
|
|
gitImplementation
|
2021-09-19 04:14:57 +02:00
|
|
|
implementation.exclude group: 'org.jetbrains' , module:'annotations'
|
2017-09-29 13:28:30 +02:00
|
|
|
}
|
|
|
|
|
2014-10-23 00:17:49 +02:00
|
|
|
dependencies {
|
2023-05-17 04:21:15 +02:00
|
|
|
constraints {
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") {
|
|
|
|
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
|
|
|
|
}
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
|
|
|
|
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
|
|
|
|
}
|
|
|
|
}
|
2023-05-14 22:25:44 +02:00
|
|
|
|
2023-09-21 23:03:21 +02:00
|
|
|
implementation "androidx.core:core:1.12.0"
|
2023-05-14 22:25:44 +02:00
|
|
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
|
|
|
|
2023-11-02 14:41:02 +01:00
|
|
|
playstoreImplementation('com.google.firebase:firebase-messaging:23.3.1') {
|
2018-05-20 21:13:53 +02:00
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
2018-12-13 19:29:46 +01:00
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
2018-05-20 21:13:53 +02:00
|
|
|
}
|
2021-12-08 21:13:02 +01:00
|
|
|
playstoreImplementation 'com.android.installreferrer:installreferrer:2.2'
|
2017-12-09 16:19:56 +01:00
|
|
|
implementation 'org.sufficientlysecure:openpgp-api:10.0'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation('com.theartofdev.edmodo:android-image-cropper:2.8.0') {
|
2018-10-19 20:59:47 +02:00
|
|
|
exclude group: 'com.android.support', module: 'appcompat-v7'
|
|
|
|
exclude group: 'com.android.support', module: 'exifinterface'
|
|
|
|
}
|
2023-10-31 15:21:41 +01:00
|
|
|
implementation 'im.conversations.webrtc:webrtc-android:119.0.0'
|
2022-07-08 20:26:53 +02:00
|
|
|
implementation 'org.jitsi:org.otr4j:0.23'
|
2020-03-09 19:12:30 +01:00
|
|
|
implementation 'org.bouncycastle:bcmail-jdk15on:1.64'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'org.gnu.inet:libidn:1.15'
|
2022-07-08 20:26:53 +02:00
|
|
|
implementation 'com.google.zxing:core:3.5.0'
|
2023-11-07 06:03:09 +01:00
|
|
|
implementation 'org.minidns:minidns-hla:1.0.4'
|
2018-09-13 18:47:30 +02:00
|
|
|
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
|
2022-07-10 11:01:22 +02:00
|
|
|
implementation 'org.whispersystems:signal-protocol-android:2.6.2'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'jetty:javax.servlet:5.1.12'
|
2023-11-26 14:23:56 +01:00
|
|
|
implementation 'com.google.code.gson:gson:2.10'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
2023-09-22 01:14:12 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2023-09-21 23:31:23 +02:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.6'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2023-09-21 23:31:23 +02:00
|
|
|
implementation 'androidx.emoji2:emoji2:1.4.0'
|
|
|
|
gitImplementation "androidx.emoji2:emoji2-bundled:1.4.0"
|
2023-10-26 01:11:12 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
2023-10-11 21:29:28 +02:00
|
|
|
implementation 'com.google.android.material:material:1.10.0'
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0' // for compatibility
|
|
|
|
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
|
2023-09-21 23:31:23 +02:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.19.1'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-ui:2.19.1'
|
|
|
|
implementation 'com.google.android.exoplayer:extension-mediasession:2.19.1'
|
2022-07-08 14:31:34 +02:00
|
|
|
implementation 'pub.devrel:easypermissions:3.0.0' // version >= 3.0.0 needs android X libraries
|
2020-04-29 12:40:31 +02:00
|
|
|
implementation 'com.wefika:flowlayout:0.4.1'
|
2022-09-27 17:47:31 +02:00
|
|
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.11.3'
|
2022-07-09 16:14:54 +02:00
|
|
|
implementation 'org.jxmpp:jxmpp-jid:1.0.3'
|
2018-08-19 22:33:20 +02:00
|
|
|
implementation 'org.hsluv:hsluv:0.2'
|
2023-02-28 01:47:54 +01:00
|
|
|
implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:2.4.2'
|
2021-06-28 01:20:11 +02:00
|
|
|
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
2022-09-02 11:04:20 +02:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.25'
|
2018-11-20 17:25:31 +01:00
|
|
|
implementation 'me.drakeet.support:toastcompat:1.1.0'
|
2022-09-27 17:47:31 +02:00
|
|
|
implementation 'org.osmdroid:osmdroid-android:6.1.14'
|
|
|
|
implementation 'com.leinardi.android:speed-dial:3.3.0'
|
2022-10-06 19:24:44 +02:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2023-09-21 23:31:23 +02:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:4.11.0"
|
2021-12-29 22:34:29 +01:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
2021-03-06 21:36:40 +01:00
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
2023-11-02 13:07:30 +01:00
|
|
|
implementation 'com.google.guava:guava:32.1.3-android'
|
2022-09-27 17:47:31 +02:00
|
|
|
implementation 'com.github.AppIntro:AppIntro:6.2.0'
|
2023-11-26 14:23:56 +01:00
|
|
|
implementation 'androidx.browser:browser:1.7.0'
|
2021-12-29 22:34:29 +01:00
|
|
|
implementation 'com.otaliastudios:transcoder:0.9.1' // 0.10.4 seems to be buggy
|
2023-05-05 23:49:54 +02:00
|
|
|
implementation 'com.github.singpolyma:Better-Link-Movement-Method:4df081e1e4'
|
2022-03-19 18:38:39 +01:00
|
|
|
implementation project(':libs:AXML')
|
2023-05-05 23:49:54 +02:00
|
|
|
implementation 'com.github.ipld:java-cid:v1.3.1'
|
2023-05-08 17:26:20 +02:00
|
|
|
implementation 'com.github.woltapp:blurhash:master'
|
2023-05-10 10:31:41 +02:00
|
|
|
implementation 'org.tomlj:tomlj:1.1.0'
|
2023-11-02 13:35:38 +01:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
2023-11-02 13:07:30 +01:00
|
|
|
implementation 'io.michaelrocks:libphonenumber-android:8.13.17'
|
2023-05-18 18:05:54 +02:00
|
|
|
implementation 'io.github.nishkarsh:android-permissions:2.1.6'
|
2023-11-07 01:22:47 +01:00
|
|
|
implementation 'com.github.singpolyma:TokenAutoComplete:bfa93780e0'
|
2023-05-25 11:44:54 +02:00
|
|
|
implementation 'com.github.singpolyma:android-identicons:3361281bd4'
|
2023-05-22 17:50:21 +02:00
|
|
|
implementation 'com.github.woltapp:blurhash:master'
|
2023-05-22 22:45:29 +02:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
2023-05-23 01:15:04 +02:00
|
|
|
implementation 'com.caverock:androidsvg-aar:1.4'
|
2023-05-24 19:01:12 +02:00
|
|
|
implementation 'org.tomlj:tomlj:1.1.0'
|
2023-06-27 14:19:13 +02:00
|
|
|
implementation 'org.jxmpp:jxmpp-stringprep-libidn:1.0.3'
|
2023-07-28 05:35:02 +02:00
|
|
|
implementation 'com.tbuonomo:dotsindicator:4.2'
|
2023-08-09 04:30:47 +02:00
|
|
|
implementation 'me.xdrop:fuzzywuzzy:1.4.0'
|
2023-10-04 13:31:13 +02:00
|
|
|
implementation "com.daimajia.swipelayout:library:1.2.0@aar"
|
|
|
|
implementation 'com.nineoldandroids:library:2.4.0'
|
2023-09-22 01:14:12 +02:00
|
|
|
implementation "androidx.core:core-ktx:1.12.0"
|
2023-11-26 14:23:56 +01:00
|
|
|
implementation "androidx.compose.material3:material3-android:1.2.0-alpha11"
|
2014-10-23 00:17:49 +02:00
|
|
|
}
|
|
|
|
|
2016-04-04 21:25:44 +02:00
|
|
|
ext {
|
2017-08-02 17:42:21 +02:00
|
|
|
preDexEnabled = System.getProperty("pre-dex", "true")
|
2023-02-11 03:32:33 +01:00
|
|
|
abiCodes = ['armeabi-v7a': 1, 'x86': 2, 'x86_64': 3, 'arm64-v8a': 4]
|
2016-04-04 21:25:44 +02:00
|
|
|
}
|
|
|
|
|
2023-02-11 03:32:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
def tags = grgit.tag.list().findAll { it.dateTime != null }.sort { it.dateTime }
|
|
|
|
|
2014-10-22 21:39:53 +02:00
|
|
|
android {
|
2022-05-23 19:17:59 +02:00
|
|
|
namespace 'eu.siacs.conversations'
|
2021-12-29 22:34:29 +01:00
|
|
|
//noinspection GradleCompatible
|
2023-10-19 13:49:46 +02:00
|
|
|
compileSdk 34
|
2016-08-25 22:53:27 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2023-10-24 04:11:40 +02:00
|
|
|
minSdkVersion 23
|
2023-11-02 05:08:47 +01:00
|
|
|
targetSdkVersion 34
|
2020-04-29 12:40:31 +02:00
|
|
|
|
2023-10-26 12:30:13 +02:00
|
|
|
// versionNameSuffix " -beta_(2023-10-26)" // " beta_(XXXX-XX-XX)" // activate for beta versions
|
2023-11-24 13:12:10 +01:00
|
|
|
versionCode 150
|
2023-11-29 18:48:15 +01:00
|
|
|
versionName "1.7.8"
|
2020-04-29 12:40:31 +02:00
|
|
|
//resConfigs "en"
|
|
|
|
|
2016-08-25 22:53:27 +02:00
|
|
|
archivesBaseName += "-$versionName"
|
2023-10-20 21:28:33 +02:00
|
|
|
// archivesBaseName += "$versionNameSuffix" // activate for beta versions
|
2023-03-20 04:34:39 +01:00
|
|
|
applicationId "de.monocles.chat"
|
2020-04-29 12:40:31 +02:00
|
|
|
multiDexEnabled true
|
2023-10-24 00:52:00 +02:00
|
|
|
//versionName grgit.describe(always: true)
|
2023-03-20 04:34:39 +01:00
|
|
|
buildConfigField("String", "LOGTAG", '"monocles chat"')
|
2020-04-29 12:40:31 +02:00
|
|
|
buildConfigField("String", "DOMAIN_LOCK", 'null')
|
2023-05-13 00:00:21 +02:00
|
|
|
buildConfigField("String", "MAGIC_CREATE_DOMAIN", '"monocles.eu"')
|
2020-04-29 12:40:31 +02:00
|
|
|
buildConfigField("boolean", "SHOW_INTRO", 'true')
|
2022-02-25 21:58:16 +01:00
|
|
|
buildConfigField("String", "UPDATE_URL", '"https://monocles.eu/chat/update/"')
|
2018-02-21 10:30:38 +01:00
|
|
|
resValue "string", "applicationId", applicationId
|
2023-03-20 04:34:39 +01:00
|
|
|
resValue "string", "app_name", "monocles chat"
|
|
|
|
resValue "string", "short_app_name", "chat"
|
2020-04-19 20:21:31 +02:00
|
|
|
}
|
2023-02-11 03:32:33 +01:00
|
|
|
splits {
|
|
|
|
abi {
|
|
|
|
universalApk true
|
|
|
|
enable true
|
2023-11-02 14:41:02 +01:00
|
|
|
reset()
|
|
|
|
include project.ext.abiCodes.keySet() as String[]
|
2023-02-11 03:32:33 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-17 18:58:56 +01:00
|
|
|
dataBinding {
|
|
|
|
enabled true
|
|
|
|
}
|
|
|
|
|
2020-04-29 12:40:31 +02:00
|
|
|
packagingOptions {
|
2022-05-23 19:17:59 +02:00
|
|
|
resources {
|
2023-02-11 03:32:33 +01:00
|
|
|
excludes += ['META-INF/BCKEY.DSA', 'META-INF/BCKEY.SF']
|
2022-05-23 19:17:59 +02:00
|
|
|
}
|
2020-04-29 12:40:31 +02:00
|
|
|
}
|
|
|
|
|
2016-08-25 22:53:27 +02:00
|
|
|
compileOptions {
|
2023-05-10 10:29:41 +02:00
|
|
|
coreLibraryDesugaringEnabled true
|
2023-05-24 17:45:07 +02:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_9
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_9
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
|
|
|
|
2020-04-29 12:40:31 +02:00
|
|
|
flavorDimensions("distribution")
|
2017-12-09 16:19:56 +01:00
|
|
|
|
2016-08-25 22:53:27 +02:00
|
|
|
productFlavors {
|
2017-12-09 16:19:56 +01:00
|
|
|
playstore {
|
|
|
|
dimension "distribution"
|
2020-04-29 12:40:31 +02:00
|
|
|
versionNameSuffix "-playstore"
|
2021-04-25 18:07:04 +02:00
|
|
|
applicationId "de.monocles.chat"
|
2020-11-07 08:27:43 +01:00
|
|
|
buildConfigField("boolean", "SHOW_MIGRATION_INFO", 'false')
|
|
|
|
resValue "string", "applicationId", applicationId
|
2017-12-09 16:19:56 +01:00
|
|
|
}
|
2020-04-29 12:40:31 +02:00
|
|
|
git {
|
2017-12-09 16:19:56 +01:00
|
|
|
dimension "distribution"
|
2020-11-07 08:27:43 +01:00
|
|
|
buildConfigField("boolean", "SHOW_MIGRATION_INFO", 'true')
|
2018-06-21 14:26:25 +02:00
|
|
|
}
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
2020-04-29 12:40:31 +02:00
|
|
|
if (project.hasProperty('mStoreFile') &&
|
|
|
|
project.hasProperty('mStorePassword') &&
|
|
|
|
project.hasProperty('mKeyAlias') &&
|
|
|
|
project.hasProperty('mKeyPassword')) {
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
storeFile file(mStoreFile)
|
|
|
|
storePassword mStorePassword
|
|
|
|
keyAlias mKeyAlias
|
|
|
|
keyPassword mKeyPassword
|
2018-11-03 16:14:30 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-29 12:40:31 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
debuggable false
|
|
|
|
signingConfig = signingConfigs.release
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
runProguard true
|
2023-10-24 00:39:49 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2018-10-08 14:26:12 +02:00
|
|
|
}
|
2017-12-14 14:25:49 +01:00
|
|
|
|
2020-04-29 12:40:31 +02:00
|
|
|
debug {
|
|
|
|
debuggable true
|
2023-09-22 18:02:12 +02:00
|
|
|
signingConfig null
|
2020-04-29 12:40:31 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
runProguard true
|
2023-10-24 00:39:49 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
2020-04-29 12:40:31 +02:00
|
|
|
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
if (getPlugins().hasPlugin('android') ||
|
|
|
|
getPlugins().hasPlugin('android-library')) {
|
|
|
|
|
|
|
|
configure(android.lintOptions) {
|
|
|
|
disable 'AndroidGradlePluginVersion', 'MissingTranslation'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 19:17:59 +02:00
|
|
|
lint {
|
|
|
|
abortOnError false
|
|
|
|
checkReleaseBuilds true
|
|
|
|
disable 'ExtraTranslation', 'MissingTranslation', 'InvalidPackage', 'MissingQuantity', 'AppCompatResource', 'RestrictedApi'
|
|
|
|
error 'StringFormatInvalid', 'StringFormatMatches'
|
2016-08-25 22:53:27 +02:00
|
|
|
}
|
2023-11-02 13:07:30 +01:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
}
|
2023-04-04 19:32:35 +02:00
|
|
|
android.applicationVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
|
|
|
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
|
|
|
|
if (baseAbiVersionCode != null) {
|
|
|
|
output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
|
|
|
|
} else {
|
2023-11-07 17:01:55 +01:00
|
|
|
//output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + grgit.log(includes: ["HEAD"], excludes: [tags.last()]).size()
|
2023-04-04 19:32:35 +02:00
|
|
|
}
|
|
|
|
}
|
2023-02-11 03:32:33 +01:00
|
|
|
|
2023-04-04 19:32:35 +02:00
|
|
|
}
|
2021-12-29 22:34:29 +01:00
|
|
|
}
|