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