Android-Password-Store/app/build.gradle

69 lines
2.1 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 plugin: 'eclipse'
2014-07-24 00:15:11 +00:00
android {
compileSdkVersion 25
2017-05-25 16:53:44 +00:00
buildToolsVersion '25.0.3'
2014-07-24 00:15:11 +00:00
defaultConfig {
applicationId "com.zeapo.pwdstore"
minSdkVersion 16
targetSdkVersion 25
2017-07-29 10:04:13 +00:00
versionCode 87
versionName "1.2.0.67"
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
2014-11-16 09:34:24 +00:00
}
// avoid Travis failures
lintOptions {
abortOnError false
}
2015-07-19 12:16:27 +00:00
packagingOptions {
exclude '.readme'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
2015-07-19 12:16:27 +00:00
}
//
// To sign release builds, create the file `gradle.properties` in
// $HOME/.gradle or in your project directory with this content:
//
// mStoreFile=/path/to/key.store
// mStorePassword=xxx
// mKeyAlias=alias
// mKeyPassword=xxx
//
if (project.hasProperty('mStoreFile') &&
project.hasProperty('mStorePassword') &&
project.hasProperty('mKeyAlias') &&
project.hasProperty('mKeyPassword')) {
signingConfigs {
release {
storeFile file(mStoreFile)
storePassword mStorePassword
keyAlias mKeyAlias
keyPassword mKeyPassword
}
}
buildTypes.release.signingConfig = signingConfigs.release
} else {
buildTypes.release.signingConfig = null
}
2014-07-24 00:15:11 +00:00
}
dependencies {
2017-05-08 11:07:40 +00:00
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
2016-07-04 07:27:55 +00:00
compile 'org.sufficientlysecure:openpgp-api:11.0'
compile 'com.nononsenseapps:filepicker:2.4.2'
2016-10-16 16:20:58 +00:00
compile('org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r') {
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
2015-07-19 12:16:27 +00:00
compile 'com.jcraft:jsch:0.1.53'
ompile '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'
2014-07-24 00:15:11 +00:00
}