Android-Password-Store/app/build.gradle

42 lines
1.2 KiB
Groovy
Raw Normal View History

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 {
compileSdkVersion 21
buildToolsVersion "21.1.2"
2014-07-24 00:15:11 +00:00
defaultConfig {
applicationId "com.zeapo.pwdstore"
2014-09-13 09:53:52 +00:00
minSdkVersion 15
targetSdkVersion 21
2015-01-04 20:51:39 +00:00
versionCode 32
versionName "1.2.0.12"
2014-07-24 00:15:11 +00:00
}
2014-11-16 09:34:24 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
// avoid Travis failures
lintOptions {
abortOnError false
}
2014-07-24 00:15:11 +00:00
}
dependencies {
compile "com.android.support:appcompat-v7:21.0.3"
compile "com.android.support:recyclerview-v7:21.0.2"
2014-09-21 13:36:23 +00:00
//compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':libraries:openpgp-api-lib')
compile 'org.eclipse.jgit:org.eclipse.jgit:3.6.0.201411121045-m1'
2014-07-24 00:15:11 +00:00
compile 'org.apache.commons:commons-io:1.3.2'
2015-01-04 15:27:56 +00:00
compile 'com.jayway.android.robotium:robotium-solo:5.2.1'
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
}