Conversations/build.gradle

153 lines
4.3 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 {
2017-12-09 16:19:56 +01:00
classpath 'com.android.tools.build:gradle:3.0.1'
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'
}
maven {
url "https://jitpack.io"
}
}
configurations {
2017-12-09 16:19:56 +01:00
playstoreImplementation
freeImplementation
}
2017-09-29 13:28:30 +02:00
ext {
2017-12-02 23:07:16 +01:00
supportLibVersion = '27.0.2'
2017-09-29 13:28:30 +02:00
}
2014-10-23 00:17:49 +02:00
dependencies {
implementation project(':libs:EnhancedListView')
2018-01-09 10:13:02 +01:00
playstoreImplementation 'com.google.android.gms:play-services-gcm:11.8.0'
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'
2017-12-09 16:19:56 +01:00
implementation 'org.jitsi:org.otr4j:0.22'
implementation 'org.gnu.inet:libidn:1.15'
2018-02-09 09:05:49 +01:00
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 'com.kyleduo.switchbutton:library:1.2.8'
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'
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
buildToolsVersion "27.0.3"
2016-08-25 22:53:27 +02:00
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
2018-03-05 19:07:39 +01:00
versionCode 255
versionName "1.23.8"
2016-08-25 22:53:27 +02:00
archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations"
}
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
}