Conversations/build.gradle

156 lines
4.4 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 {
2017-12-09 16:19:56 +01:00
google()
2016-08-25 22:53:27 +02:00
jcenter()
}
dependencies {
2018-05-10 10:30:23 +02:00
classpath 'com.android.tools.build:gradle:3.1.2'
2016-08-25 22:53:27 +02:00
}
2014-10-22 18:38:44 +02:00
}
apply plugin: 'com.android.application'
repositories {
2016-08-25 22:53:27 +02:00
jcenter()
mavenCentral()
2017-09-29 13:28:30 +02:00
maven {
url 'https://maven.google.com'
}
2018-03-09 21:39:29 +01:00
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
configurations {
2017-12-09 16:19:56 +01:00
playstoreImplementation
freeImplementation
}
2017-09-29 13:28:30 +02:00
ext {
2018-04-12 10:26:15 +02:00
supportLibVersion = '27.1.1'
2017-09-29 13:28:30 +02:00
}
2014-10-23 00:17:49 +02:00
dependencies {
2018-05-19 20:05:45 +02:00
playstoreImplementation 'com.google.firebase:firebase-messaging:15.0.2'
2017-12-09 16:19:56 +01:00
implementation 'org.sufficientlysecure:openpgp-api:10.0'
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation "com.android.support:support-v13:$supportLibVersion"
implementation "com.android.support:appcompat-v7:$supportLibVersion"
implementation "com.android.support:cardview-v7:$supportLibVersion"
2018-02-16 13:39:40 +01:00
implementation "com.android.support:support-emoji-appcompat:$supportLibVersion"
2017-12-09 16:19:56 +01:00
implementation "com.android.support:support-emoji:$supportLibVersion"
implementation "com.android.support:design:$supportLibVersion"
2017-12-09 16:19:56 +01:00
freeImplementation "com.android.support:support-emoji-bundled:$supportLibVersion"
2018-02-09 09:05:49 +01:00
implementation 'org.bouncycastle:bcmail-jdk15on:1.58'
implementation 'com.google.zxing:core:3.3.0'
2017-12-09 16:19:56 +01:00
implementation 'de.measite.minidns:minidns-hla:0.2.4'
2018-02-09 09:05:49 +01:00
implementation 'me.leolin:ShortcutBadger:1.1.21@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'
implementation "com.wefika:flowlayout:0.4.1"
implementation 'net.ypresto.androidtranscoder:android-transcoder:0.2.0'
2018-04-12 10:26:15 +02:00
implementation 'rocks.xmpp:xmpp-addr:0.8.0-SNAPSHOT'
2018-03-11 19:09:35 +01:00
implementation 'org.osmdroid:osmdroid-android:6.0.1'
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 {
2018-02-09 09:05:49 +01:00
compileSdkVersion 27
2016-08-25 22:53:27 +02:00
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
2018-05-16 15:09:38 +02:00
versionCode 272
versionName "2.2.1"
2016-08-25 22:53:27 +02:00
archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId
2018-02-24 21:57:42 +01:00
resValue "string", "app_name", "Conversations"
2016-08-25 22:53:27 +02:00
}
dataBinding {
enabled true
}
2016-08-25 22:53:27 +02:00
dexOptions {
// Skip pre-dexing when running on Travis CI or when disabled via -Dpre-dex=false.
preDexLibraries = preDexEnabled && !travisBuild
jumboMode true
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
}
2017-12-09 16:19:56 +01:00
flavorDimensions("distribution")
2016-08-25 22:53:27 +02:00
productFlavors {
2017-12-09 16:19:56 +01:00
playstore {
dimension "distribution"
}
free {
dimension "distribution"
}
2016-08-25 22:53:27 +02:00
}
2017-12-09 16:14:43 +01:00
2017-12-14 14:25:49 +01:00
buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2017-12-09 16:14:43 +01:00
if(new File("signing.properties").exists()) {
Properties props = new Properties()
props.load(new FileInputStream(file("signing.properties")))
2016-08-25 22:53:27 +02:00
signingConfigs {
release {
2017-12-09 16:14:43 +01:00
storeFile file(props['keystore'])
storePassword props['keystore.password']
keyAlias props['keystore.alias']
keyPassword props['keystore.password']
2016-08-25 22:53:27 +02:00
}
}
buildTypes.release.signingConfig = signingConfigs.release
}
lintOptions {
disable 'MissingTranslation', 'InvalidPackage', 'MissingQuantity', 'AppCompatResource'
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'
}
2014-10-22 18:38:44 +02:00
}