monocles_chat/build.gradle

219 lines
7.6 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 {
2022-04-29 01:36:06 +02:00
classpath 'com.android.tools.build:gradle:7.1.3'
2016-08-25 22:53:27 +02:00
}
2014-10-22 18:38:44 +02:00
}
apply plugin: 'com.android.application'
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()
2020-06-07 10:26:58 +02:00
maven { url "https://jitpack.io" }
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 {
2022-04-07 22:42:15 +02:00
playstoreImplementation('com.google.firebase:firebase-messaging:23.0.2') {
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'
}
2022-02-20 23:07:47 +01:00
implementation 'org.jitsi:org.otr4j:0.23'
2022-04-29 01:36:06 +02:00
implementation 'com.github.webrtc-sdk:android:97.4692.01'
//implementation 'org.webrtc:google-webrtc:1.0.32006'
implementation 'org.bouncycastle:bcmail-jdk15on:1.64'
2020-04-29 12:40:31 +02:00
implementation 'org.gnu.inet:libidn:1.15'
implementation 'com.google.zxing:core:3.3.3' // > 3.3.x not working below SDK 24
2017-12-09 16:19:56 +01:00
implementation 'de.measite.minidns:minidns-hla:0.2.4'
2018-09-13 18:47:30 +02:00
implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
2017-12-09 16:19:56 +01:00
implementation 'org.whispersystems:signal-protocol-java:2.6.2'
implementation 'com.makeramen:roundedimageview:2.3.0'
2020-04-29 12:40:31 +02:00
implementation 'jetty:javax.servlet:5.1.12'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
2022-02-20 23:07:47 +01:00
implementation 'androidx.appcompat:appcompat:1.3.1' // 1.4.0 needs minCompileSdk 31
implementation 'androidx.exifinterface:exifinterface:1.3.3'
2020-04-29 12:40:31 +02:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.emoji2:emoji2:1.1.0-rc01"
gitImplementation "androidx.emoji2:emoji2-bundled:1.1.0-rc01"
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2022-02-20 23:07:47 +01:00
implementation 'com.google.android.material:material:1.4.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'
2022-02-20 23:07:47 +01:00
implementation 'com.google.android.exoplayer:exoplayer-core:2.15.0'
implementation 'com.google.android.exoplayer:exoplayer-ui:2.15.0'
2020-04-29 12:40:31 +02:00
implementation 'com.wefika:flowlayout:0.4.1'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
implementation 'org.jxmpp:jxmpp-jid:1.0.2'
implementation 'org.hsluv:hsluv:0.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.24'
implementation 'me.drakeet.support:toastcompat:1.1.0'
implementation 'org.osmdroid:osmdroid-android:6.1.11'
implementation 'com.leinardi.android:speed-dial:3.2.0'
2020-04-29 12:40:31 +02:00
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
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:31.0.1-android'
2021-03-06 20:13:17 +01:00
implementation 'com.github.AppIntro:AppIntro:6.1.0'
2022-04-07 22:42:15 +02:00
implementation 'androidx.browser:browser:1.4.0'
implementation 'com.otaliastudios:transcoder:0.9.1' // 0.10.4 seems to be buggy
implementation project(':libs:AXML')
2022-04-07 23:20:45 +02:00
implementation fileTree(include: ['libwebrtc-m99.aar'], dir: 'libs')
2014-10-23 00:17:49 +02:00
}
2016-04-04 21:25:44 +02:00
ext {
2016-08-25 22:53:27 +02:00
travisBuild = System.getenv("TRAVIS") == "true"
preDexEnabled = System.getProperty("pre-dex", "true")
2016-04-04 21:25:44 +02:00
}
android {
2020-04-29 12:40:31 +02:00
//noinspection GradleCompatible
compileSdkVersion 31
2016-08-25 22:53:27 +02:00
defaultConfig {
2021-04-24 17:59:15 +02:00
minSdkVersion 21
targetSdkVersion 30
2020-04-29 12:40:31 +02:00
//versionNameSuffix " beta_(2021-12-19)" // " beta_(XXXX-XX-XX)" // activate for beta versions
2022-04-29 01:36:06 +02:00
versionCode 114
versionName "1.5.3"
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
2021-04-24 22:39:56 +02:00
applicationId "de.monocles.chat"
2020-04-29 12:40:31 +02:00
multiDexEnabled true
buildConfigField("String", "LOGTAG", '"monocles chat"')
2020-04-29 12:40:31 +02:00
buildConfigField("String", "DOMAIN_LOCK", 'null')
buildConfigField("boolean", "SHOW_INTRO", 'true')
buildConfigField("String", "UPDATE_URL", '"https://monocles.eu/chat/update/"')
resValue "string", "applicationId", applicationId
resValue "string", "app_name", "monocles chat"
}
dataBinding {
enabled true
}
2020-04-29 12:40:31 +02:00
packagingOptions {
//X86
2021-04-12 21:20:19 +02:00
exclude "lib/x86/**"
2020-04-29 12:40:31 +02:00
//X86_64
2021-04-12 21:20:19 +02:00
exclude "lib/x86_64/**"
2020-04-29 12:40:31 +02:00
//armeabi
2020-06-07 10:26:58 +02:00
//exclude "lib/armeabi/**"
2020-04-29 12:40:31 +02:00
}
2016-08-25 22:53:27 +02:00
compileOptions {
2017-12-09 16:19:56 +01:00
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
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
buildTypes.release.signingConfig = null
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
}
}
lintOptions {
2021-04-18 21:58:40 +02:00
error 'StringFormatInvalid' , 'StringFormatMatches'
2020-04-29 12:40:31 +02:00
disable 'ExtraTranslation', 'MissingTranslation', 'InvalidPackage', 'MissingQuantity', 'AppCompatResource', 'RestrictedApi'
checkReleaseBuilds true
abortOnError false
2016-08-25 22:53:27 +02:00
}
subprojects {
afterEvaluate {
if (getPlugins().hasPlugin('android') ||
getPlugins().hasPlugin('android-library')) {
configure(android.lintOptions) {
disable 'AndroidGradlePluginVersion', 'MissingTranslation'
}
}
}
}
packagingOptions {
exclude 'META-INF/BCKEY.DSA'
exclude 'META-INF/BCKEY.SF'
}
}