1
0
Fork 1
monocles_chat_clean/build.gradle

279 lines
10 KiB
Groovy
Raw Normal View History

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()
mavenCentral()
2016-08-25 22:53:27 +02:00
}
dependencies {
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"
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'
}
apply plugin: 'com.android.application'
2023-01-10 10:55:38 +01:00
apply plugin: "com.diffplug.spotless"
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
}
}
repositories {
google()
2016-08-25 22:53:27 +02:00
mavenCentral()
maven { url "https://jitpack.io" }
2023-09-22 01:14:12 +02:00
jcenter()
}
configurations {
2017-12-09 16:19:56 +01:00
playstoreImplementation
2020-04-29 12:40:31 +02:00
gitImplementation
implementation.exclude group: 'org.jetbrains' , module:'annotations'
2017-09-29 13:28:30 +02:00
}
2014-10-23 00:17:49 +02:00
dependencies {
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'
playstoreImplementation('com.google.firebase:firebase-messaging:23.3.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'
}
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') {
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'
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'
implementation 'org.minidns:minidns-hla:1.0.4'
2018-09-13 18:47:30 +02:00
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
implementation 'org.whispersystems:signal-protocol-android:2.6.2'
2020-04-29 12:40:31 +02:00
implementation 'jetty:javax.servlet:5.1.12'
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'
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'
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'
implementation 'org.hsluv:hsluv:0.2'
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'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.25'
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"
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'
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'
implementation 'androidx.browser:browser:1.7.0'
implementation 'com.otaliastudios:transcoder:0.9.1' // 0.10.4 seems to be buggy
implementation 'com.github.singpolyma:Better-Link-Movement-Method:4df081e1e4'
implementation project(':libs:AXML')
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'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
implementation 'io.michaelrocks:libphonenumber-android:8.13.17'
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'
implementation 'com.github.woltapp:blurhash:master'
implementation 'androidx.documentfile:documentfile:1.0.1'
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'
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"
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 {
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 }
android {
2022-05-23 19:17:59 +02:00
namespace 'eu.siacs.conversations'
//noinspection GradleCompatible
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
versionName "1.7.8"
2020-04-29 12:40:31 +02:00
//resConfigs "en"
2016-08-25 22:53:27 +02:00
archivesBaseName += "-$versionName"
// 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
//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')
buildConfigField("String", "MAGIC_CREATE_DOMAIN", '"monocles.eu"')
2020-04-29 12:40:31 +02:00
buildConfigField("boolean", "SHOW_INTRO", 'true')
buildConfigField("String", "UPDATE_URL", '"https://monocles.eu/chat/update/"')
resValue "string", "applicationId", applicationId
2023-03-20 04:34:39 +01:00
resValue "string", "app_name", "monocles chat"
resValue "string", "short_app_name", "chat"
}
2023-02-11 03:32:33 +01:00
splits {
abi {
universalApk true
enable true
reset()
include project.ext.abiCodes.keySet() as String[]
2023-02-11 03:32:33 +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"
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"
buildConfigField("boolean", "SHOW_MIGRATION_INFO", 'true')
}
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
}
}
2020-04-29 12:40:31 +02:00
buildTypes {
release {
debuggable false
signingConfig = signingConfigs.release
minifyEnabled true
shrinkResources true
runProguard true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
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
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
}
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
}
}