diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle index 2868ab12..01a521d3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,8 +14,8 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 } // avoid Travis failures @@ -25,8 +25,8 @@ android { } dependencies { - compile 'com.android.support:appcompat-v7:22.1.1' - compile 'com.android.support:recyclerview-v7:22.0.0' + compile 'com.android.support:appcompat-v7:22.2.0' + compile 'com.android.support:recyclerview-v7:22.2.0' compile 'org.sufficientlysecure:openpgp-api:7.0' compile 'org.eclipse.jgit:org.eclipse.jgit:3.7.0.201502260915-r' compile 'com.jcraft:jsch:0.1.52' @@ -40,7 +40,4 @@ tasks.findAll { // make all tasks whose name starts with 'assemble'... it.name.startsWith 'assemble' }.each { // ... depending on 'copyDependenciesIntoLibs' task from 'copyLibs.gradle' script plugin it.dependsOn copyDependenciesIntoLibs -} - -apply plugin: 'com.android.application' //or apply plugin: 'java' -apply plugin: 'me.tatarka.retrolambda'
\ No newline at end of file +}
\ No newline at end of file |