aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API/example-app/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-02-09 19:22:14 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-02-09 19:22:14 +0100
commit754b2a6cb15a6af61150cd4b1ce472bebd4fec22 (patch)
treede280b70b9e5f2d04e1ac568eeadb01d726596e2 /OpenPGP-Keychain-API/example-app/build.gradle
parent35a123f53c87d2ff6130d44c2bed3c421775b9dd (diff)
downloadopen-keychain-754b2a6cb15a6af61150cd4b1ce472bebd4fec22.tar.gz
open-keychain-754b2a6cb15a6af61150cd4b1ce472bebd4fec22.tar.bz2
open-keychain-754b2a6cb15a6af61150cd4b1ce472bebd4fec22.zip
Restructuring for new API library
Diffstat (limited to 'OpenPGP-Keychain-API/example-app/build.gradle')
-rw-r--r--OpenPGP-Keychain-API/example-app/build.gradle59
1 files changed, 59 insertions, 0 deletions
diff --git a/OpenPGP-Keychain-API/example-app/build.gradle b/OpenPGP-Keychain-API/example-app/build.gradle
new file mode 100644
index 000000000..99a09f094
--- /dev/null
+++ b/OpenPGP-Keychain-API/example-app/build.gradle
@@ -0,0 +1,59 @@
+buildscript {
+ repositories {
+ mavenCentral()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:0.8.0'
+ }
+}
+
+apply plugin: 'android'
+
+dependencies {
+ compile 'com.android.support:support-v4:19.0.1'
+ compile project(':libraries:keychain-api-library')
+}
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion "19.0.1"
+
+ defaultConfig {
+ minSdkVersion 8
+ targetSdkVersion 19
+ }
+
+ /*
+ * To sign release build, create file gradle.properties in ~/.gradle/ with this content:
+ *
+ * signingStoreLocation=/home/key.store
+ * signingStorePassword=xxx
+ * signingKeyAlias=alias
+ * signingKeyPassword=xxx
+ */
+ if (project.hasProperty('signingStoreLocation') &&
+ project.hasProperty('signingStorePassword') &&
+ project.hasProperty('signingKeyAlias') &&
+ project.hasProperty('signingKeyPassword')) {
+ println "Found sign properties in gradle.properties! Signing build…"
+
+ signingConfigs {
+ release {
+ storeFile file(signingStoreLocation)
+ storePassword signingStorePassword
+ keyAlias signingKeyAlias
+ keyPassword signingKeyPassword
+ }
+ }
+
+ buildTypes.release.signingConfig = signingConfigs.release
+ } else {
+ buildTypes.release.signingConfig = null
+ }
+
+ // Do not abort build if lint finds errors
+ lintOptions {
+ abortOnError false
+ }
+}