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 {
|
2014-10-19 12:56:52 +02:00
|
|
|
compileSdkVersion 21
|
|
|
|
buildToolsVersion "21.0.1"
|
2014-07-24 02:15:11 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.zeapo.pwdstore"
|
2014-09-13 11:53:52 +02:00
|
|
|
minSdkVersion 15
|
2014-10-19 12:56:52 +02:00
|
|
|
targetSdkVersion 21
|
2014-11-09 17:15:51 +01:00
|
|
|
versionCode 24
|
|
|
|
versionName "1.2-a5"
|
2014-07-24 02:15:11 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
runProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 00:33:25 +02:00
|
|
|
|
|
|
|
// avoid Travis failures
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2014-07-24 02:15:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-10-19 12:56:52 +02:00
|
|
|
compile "com.android.support:appcompat-v7:21.+"
|
2014-10-19 16:45:54 +02:00
|
|
|
compile "com.android.support:recyclerview-v7:21.+"
|
2014-10-19 12:56:52 +02:00
|
|
|
|
2014-09-21 15:36:23 +02:00
|
|
|
//compile fileTree(dir: 'libs', include: ['*.jar'])
|
2014-07-30 03:42:22 +02:00
|
|
|
compile project(':libraries:openpgp-api-lib')
|
2014-09-23 15:20:55 +02:00
|
|
|
compile 'org.eclipse.jgit:org.eclipse.jgit:3.5.+'
|
2014-07-24 02:15:11 +02:00
|
|
|
compile 'org.apache.commons:commons-io:1.3.2'
|
|
|
|
}
|
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
|
|
|
|
}
|