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 {
|
2014-09-06 12:54:53 +00:00
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion "19.1.0"
|
2014-07-24 00:15:11 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.zeapo.pwdstore"
|
2014-09-13 09:53:52 +00:00
|
|
|
minSdkVersion 15
|
2014-09-06 12:54:53 +00:00
|
|
|
targetSdkVersion 19
|
2014-10-01 21:22:26 +00:00
|
|
|
versionCode 15
|
|
|
|
versionName "1.1-b8"
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
runProguard false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2014-09-22 22:33:25 +00:00
|
|
|
|
|
|
|
// avoid Travis failures
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2014-07-24 00:15:11 +00:00
|
|
|
}
|
2014-08-16 23:13:46 +00:00
|
|
|
repositories {
|
|
|
|
maven { url 'http://clinker.47deg.com/nexus/content/groups/public' }
|
|
|
|
}
|
2014-07-24 00:15:11 +00:00
|
|
|
|
|
|
|
dependencies {
|
2014-09-21 13:36:23 +00:00
|
|
|
//compile fileTree(dir: 'libs', include: ['*.jar'])
|
2014-07-30 01:42:22 +00:00
|
|
|
compile project(':libraries:openpgp-api-lib')
|
2014-09-23 13:20:55 +00:00
|
|
|
compile 'org.eclipse.jgit:org.eclipse.jgit:3.5.+'
|
2014-07-24 00:15:11 +00:00
|
|
|
compile 'org.apache.commons:commons-io:1.3.2'
|
2014-08-16 23:13:46 +00:00
|
|
|
compile ('com.fortysevendeg.swipelistview:swipelistview:1.0-SNAPSHOT@aar') {
|
|
|
|
transitive = true
|
|
|
|
}
|
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
|
|
|
|
}
|