2014-07-24 00:15:11 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2014-09-21 13:36:23 +00:00
|
|
|
apply from: 'copyLibs.gradle' // enable 'copyLibs.gradle' script plugin
|
|
|
|
apply plugin: 'eclipse'
|
2014-07-24 00:15:11 +00:00
|
|
|
|
|
|
|
android {
|
2015-04-19 18:27:30 +00:00
|
|
|
compileSdkVersion 22
|
2015-05-12 20:31:17 +00:00
|
|
|
buildToolsVersion "22.0.1"
|
2014-07-24 00:15:11 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.zeapo.pwdstore"
|
2014-09-13 09:53:52 +00:00
|
|
|
minSdkVersion 15
|
2015-04-19 18:27:30 +00:00
|
|
|
targetSdkVersion 22
|
2015-08-10 05:10:24 +00:00
|
|
|
versionCode 48
|
|
|
|
versionName "1.2.0.28"
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
2014-09-22 22:33:25 +00:00
|
|
|
|
2014-11-16 09:34:24 +00:00
|
|
|
compileOptions {
|
2015-06-09 21:52:46 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
2014-11-16 09:34:24 +00:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:33:25 +00:00
|
|
|
// avoid Travis failures
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2015-07-19 12:16:27 +00:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude '.readme'
|
|
|
|
}
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2015-07-31 21:20:20 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:22.2.1'
|
2015-08-12 20:33:48 +00:00
|
|
|
compile 'com.android.support:cardview-v7:22.2.1'
|
2015-07-31 21:20:20 +00:00
|
|
|
compile 'com.android.support:design:22.2.1'
|
2015-05-12 20:31:17 +00:00
|
|
|
compile 'org.sufficientlysecure:openpgp-api:7.0'
|
2015-07-19 12:16:27 +00:00
|
|
|
compile 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r'
|
|
|
|
compile 'com.jcraft:jsch:0.1.53'
|
2014-07-24 00:15:11 +00:00
|
|
|
compile 'org.apache.commons:commons-io:1.3.2'
|
2015-03-14 22:38:44 +00:00
|
|
|
compile 'com.jayway.android.robotium:robotium-solo:5.3.1'
|
2015-04-19 22:26:21 +00:00
|
|
|
compile 'net.rdrei.android.dirchooser:library:2.1@aar'
|
2015-05-17 16:08:59 +00:00
|
|
|
compile group: 'com.google.guava', name: 'guava', version: '18.0'
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
2014-09-21 13:36:23 +00:00
|
|
|
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
|
2015-06-12 20:25:33 +00:00
|
|
|
}
|