diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle index 61521f2d..5e5f9b07 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:1.3.1' } } @@ -14,6 +14,9 @@ allprojects { repositories { jcenter() mavenCentral() + maven { + url 'http://lorenzo.villani.me/android-cropimage/' + } } } @@ -23,19 +26,27 @@ repositories { flatDir { dirs 'libs/3rdParty', 'libs/3rdParty/zxing' } + jcenter() + mavenCentral() } dependencies { + compile 'com.soundcloud.android:android-crop:1.0.1@aar' + compile 'org.bouncycastle:bcmail-jdk15on:1.52' + compile 'com.kyleduo.switchbutton:library:1.2.8' + compile 'org.whispersystems:axolotl-android:1.3.4' + compile 'com.makeramen:roundedimageview:2.2.0' + // Local JAR files //compile fileTree(dir: 'libs/zxing', includes: ['core-3.1.0.jar', 'android-integration-3.1.0.jar']) - compile name: 'core-3.1.0' //zxing - compile name: 'android-integration-3.1.0' //zxing + compile name: 'core-3.2.1' //zxing + compile name: 'android-integration-3.2.1' //zxing compile name: 'libidn-1.15' - compile name: 'minidns-0.1.3' + compile name: 'minidns-0.1.7' compile name: 'org.otr4j-0.22' - compile name: 'bcprov-jdk15on-1.51' + compile name: 'bcprov-jdk15on-1.52' compile name: 'EnhancedListView-0.3.4', ext: 'aar' - compile name: 'ShortcutBadger-1.1.1', ext: 'aar' + compile name: 'ShortcutBadger-1.1.3', ext: 'aar' compile name: 'swipy-1.2.1', ext: 'aar' // Local modules @@ -50,14 +61,15 @@ dependencies { } android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" + compileSdkVersion 23 + buildToolsVersion "23.0.2" defaultConfig { minSdkVersion 14 - targetSdkVersion 21 - versionCode 65 - versionName "1.5.2.2" + targetSdkVersion 23 + versionCode 122 + versionName "1.9.3" + project.ext.set(archivesBaseName, archivesBaseName + "-" + versionName); } compileOptions { @@ -104,7 +116,7 @@ android { } lintOptions { - disable 'ExtraTranslation', 'MissingTranslation', 'InvalidPackage', 'MissingQuantity' + disable 'ExtraTranslation', 'MissingTranslation', 'InvalidPackage', 'MissingQuantity', 'AppCompatResource' } subprojects { |