aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-09-04 11:30:36 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2014-09-04 11:30:36 +0200
commit10e96dff43bfc9ff36fdd5a282b20f20df53d6db (patch)
treeb058a1ebde65d7312e2a41c824254a5a4646b193 /OpenKeychain/build.gradle
parentdece50244b62c817917443e849811325be99c63a (diff)
downloadopen-keychain-10e96dff43bfc9ff36fdd5a282b20f20df53d6db.tar.gz
open-keychain-10e96dff43bfc9ff36fdd5a282b20f20df53d6db.tar.bz2
open-keychain-10e96dff43bfc9ff36fdd5a282b20f20df53d6db.zip
Add safeslinger to build
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 32ae8ceb0..ec6d2c35d 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -20,11 +20,12 @@ dependencies {
compile project(':extern:KeybaseLib:Lib')
compile project(':extern:TokenAutoComplete:library')
compile project(':extern:openpgp-card-nfc-lib:library')
+ compile project(':extern:safeslinger-exchange')
}
android {
compileSdkVersion 19
- buildToolsVersion "19.1"
+ buildToolsVersion '19.1'
defaultConfig {
minSdkVersion 9
@@ -67,7 +68,7 @@ android {
checkAllWarnings true
htmlReport true
- htmlOutput file("lint-report.html")
+ htmlOutput file('lint-report.html')
}
// Disable preDexing, causes com.android.dx.cf.iface.ParseException: bad class file magic (cafebabe) or version (0034.0000) on some systems
@@ -78,7 +79,7 @@ android {
// NOTE: This disables Lint!
tasks.whenTaskAdded { task ->
- if (task.name.contains("lint")) {
+ if (task.name.contains('lint')) {
task.enabled = false
}
}