sdk and libs version update

This commit is contained in:
Mohamed Zenadi
2016-10-16 18:20:58 +02:00
parent ab6c7555fc
commit cb7f9c8529

View File

@@ -3,14 +3,14 @@ apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin
apply plugin: 'eclipse' apply plugin: 'eclipse'
android { android {
compileSdkVersion 23 compileSdkVersion 24
buildToolsVersion '23.0.3' buildToolsVersion '24.0.1'
defaultConfig { defaultConfig {
applicationId "com.zeapo.pwdstore" applicationId "com.zeapo.pwdstore"
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 23 targetSdkVersion 24
versionCode 72 versionCode 73
versionName "1.2.0.52" versionName "1.2.0.53"
} }
compileOptions { compileOptions {
@@ -58,19 +58,19 @@ android {
} }
dependencies { dependencies {
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:recyclerview-v7:23.4.0' compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:cardview-v7:23.4.0' compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.android.support:design:23.4.0' compile 'com.android.support:design:24.2.1'
compile 'org.sufficientlysecure:openpgp-api:11.0' compile 'org.sufficientlysecure:openpgp-api:11.0'
compile 'com.nononsenseapps:filepicker:2.4.2' compile 'com.nononsenseapps:filepicker:2.4.2'
compile ('org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r') { compile('org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r') {
exclude group: 'org.apache.httpcomponents', module: 'httpclient' exclude group: 'org.apache.httpcomponents', module: 'httpclient'
} }
compile 'com.jcraft:jsch:0.1.53' compile 'com.jcraft:jsch:0.1.53'
compile 'org.apache.commons:commons-io:1.3.2' compile 'org.apache.commons:commons-io:1.3.2'
compile 'com.jayway.android.robotium:robotium-solo:5.3.1' compile 'com.jayway.android.robotium:robotium-solo:5.3.1'
compile group: 'com.google.guava', name: 'guava', version: '18.0' compile 'com.google.guava:guava:18.0'
} }
tasks.findAll { // make all tasks whose name starts with 'assemble'... tasks.findAll { // make all tasks whose name starts with 'assemble'...
it.name.startsWith 'assemble' it.name.startsWith 'assemble'