Conversations/build.gradle

120 lines
2.9 KiB
Groovy
Raw Normal View History

2014-10-22 12:38:44 -04:00
// Top-level build file where you can add configuration options common to all
// sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
2014-10-22 12:38:44 -04:00
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven {
url 'http://lorenzo.villani.me/android-cropimage/'
}
}
}
apply plugin: 'com.android.application'
repositories {
2014-11-05 08:35:01 -05:00
jcenter()
mavenCentral()
}
2014-10-22 18:17:49 -04:00
dependencies {
2014-11-03 13:56:38 -05:00
compile project(':libs:MemorizingTrustManager')
2016-01-15 05:48:16 -05:00
compile 'org.sufficientlysecure:openpgp-api:10.0'
compile 'com.soundcloud.android:android-crop:1.0.1@aar'
2015-09-19 11:28:59 -04:00
compile 'com.android.support:support-v13:23.0.1'
2015-08-25 05:17:05 -04:00
compile 'org.bouncycastle:bcprov-jdk15on:1.52'
compile 'org.bouncycastle:bcmail-jdk15on:1.52'
2015-02-22 11:35:09 -05:00
compile 'org.jitsi:org.otr4j:0.22'
2014-11-09 11:03:22 -05:00
compile 'org.gnu.inet:libidn:1.15'
2015-08-23 07:27:06 -04:00
compile 'com.google.zxing:core:3.2.1'
compile 'com.google.zxing:android-integration:3.2.1'
2015-08-25 04:55:57 -04:00
compile 'de.measite.minidns:minidns:0.1.7'
compile 'de.timroes.android:EnhancedListView:0.3.4'
2015-08-03 08:01:58 -04:00
compile 'me.leolin:ShortcutBadger:1.1.3@aar'
2015-07-18 13:38:52 -04:00
compile 'com.kyleduo.switchbutton:library:1.2.8'
compile 'org.whispersystems:axolotl-android:1.3.4'
2015-08-25 04:18:00 -04:00
compile 'com.makeramen:roundedimageview:2.2.0'
2014-10-22 18:17:49 -04:00
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
2016-02-11 11:13:17 -05:00
versionCode 123
versionName "1.9.4"
project.ext.set(archivesBaseName, archivesBaseName + "-" + versionName);
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
2014-10-26 09:11:28 -04:00
//
// To sign release builds, create the file `gradle.properties` in
// $HOME/.gradle or in your project directory with this content:
//
// mStoreFile=/path/to/key.store
// mStorePassword=xxx
// mKeyAlias=alias
// mKeyPassword=xxx
//
if (project.hasProperty('mStoreFile') &&
project.hasProperty('mStorePassword') &&
project.hasProperty('mKeyAlias') &&
project.hasProperty('mKeyPassword')) {
signingConfigs {
release {
storeFile file(mStoreFile)
storePassword mStorePassword
keyAlias mKeyAlias
keyPassword mKeyPassword
}
}
buildTypes.release.signingConfig = signingConfigs.release
} else {
buildTypes.release.signingConfig = null
}
applicationVariants.all { variant ->
if (variant.name.equals('release')) {
variant.outputs.each { output ->
if (output.zipAlign != null) {
output.zipAlign.outputFile = new File(output.outputFile.parent, rootProject.name + "-${variant.versionName}.apk")
}
}
}
}
2014-10-26 09:11:28 -04:00
2014-10-22 18:17:49 -04:00
lintOptions {
2015-07-19 08:51:11 -04:00
disable 'ExtraTranslation', 'MissingTranslation', 'InvalidPackage', 'MissingQuantity', 'AppCompatResource'
2014-10-22 18:17:49 -04:00
}
2014-10-26 09:11:28 -04:00
2014-10-22 18:17:49 -04:00
subprojects {
2014-10-22 18:17:49 -04:00
afterEvaluate {
if (getPlugins().hasPlugin('android') ||
getPlugins().hasPlugin('android-library')) {
configure(android.lintOptions) {
disable 'AndroidGradlePluginVersion', 'MissingTranslation'
}
}
}
}
2014-10-22 12:38:44 -04:00
}