diff options
author | Mohamed Zenadi <mohamed@zenadi.com> | 2015-04-19 20:27:30 +0200 |
---|---|---|
committer | Mohamed Zenadi <mohamed@zenadi.com> | 2015-04-19 20:27:30 +0200 |
commit | 771d8a9415831b5d6fe9cebf574fbf7e5eacd373 (patch) | |
tree | 3c74a84dce73e1e19b93839b803f509feabe36df /app/build.gradle | |
parent | 6983ef4f82a85cae1e7f83638ce2f5ec37e96ef0 (diff) |
Add a Sync command that calls Pull then Push
Fixes #78
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index f8f43844..078dc444 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,12 +3,12 @@ apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin apply plugin: 'eclipse' android { - compileSdkVersion 21 - buildToolsVersion "21.1.2" + compileSdkVersion 22 + buildToolsVersion "22.0.0" defaultConfig { applicationId "com.zeapo.pwdstore" minSdkVersion 15 - targetSdkVersion 21 + targetSdkVersion 22 versionCode 35 versionName "1.2.0.15" } @@ -25,8 +25,8 @@ android { } dependencies { - compile 'com.android.support:appcompat-v7:21.0.3' - compile 'com.android.support:recyclerview-v7:21.0.3' + compile 'com.android.support:appcompat-v7:22.0.0' + compile 'com.android.support:recyclerview-v7:22.0.0' //compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':libraries:openpgp-api-lib') compile 'org.eclipse.jgit:org.eclipse.jgit:3.7.0.201502260915-r' |