aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/build.gradle
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-10-26 12:29:05 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2015-10-26 12:29:05 +0100
commit6a04866ae61e6b5cb383e45bdbe29a649e60013f (patch)
tree51d25bd2f8c3a8b08e350f7ac7f5bafe2701e898 /OpenKeychain/build.gradle
parentcae76455d4543e8a073e01eb31b8e4bedab96503 (diff)
downloadopen-keychain-6a04866ae61e6b5cb383e45bdbe29a649e60013f.tar.gz
open-keychain-6a04866ae61e6b5cb383e45bdbe29a649e60013f.tar.bz2
open-keychain-6a04866ae61e6b5cb383e45bdbe29a649e60013f.zip
Commit Github tokens
Diffstat (limited to 'OpenKeychain/build.gradle')
-rw-r--r--OpenKeychain/build.gradle21
1 files changed, 6 insertions, 15 deletions
diff --git a/OpenKeychain/build.gradle b/OpenKeychain/build.gradle
index 73bad1dd8..3312df784 100644
--- a/OpenKeychain/build.gradle
+++ b/OpenKeychain/build.gradle
@@ -161,18 +161,9 @@ android {
resValue "string", "account_type", "org.sufficientlysecure.keychain.account"
resValue "string", "provider_content_authority", "org.sufficientlysecure.keychain.provider"
- // Github API ID and secret are read from gradle.properties (not in git!)
- // must use double escaping in gradle.properties! For example:
- // githubClientId="\\"7a011b66275f244d3f21\\""
- // githubClientSecret="\\"eaced8a6655719d8c6848396de97b3f5d7a89fec\\""
- if (project.hasProperty('githubClientId') &&
- project.hasProperty('githubClientSecret')) {
-
- println "Found github oauth properties"
-
- buildConfigField "String", "GITHUB_CLIENT_ID", githubClientId
- buildConfigField "String", "GITHUB_CLIENT_SECRET", githubClientSecret
- }
+ // Github API
+ buildConfigField "String", "GITHUB_CLIENT_ID", "\"c942cd81844d94e7e41b\""
+ buildConfigField "String", "GITHUB_CLIENT_SECRET", "\"f1dd17e70a0614abbd9310b00a310e23c6c8edff\""
}
debug {
@@ -186,9 +177,9 @@ android {
resValue "string", "account_type", "org.sufficientlysecure.keychain.debug.account"
resValue "string", "provider_content_authority", "org.sufficientlysecure.keychain.debug.provider"
- // Github API for debug build only
- buildConfigField "String", "GITHUB_CLIENT_ID", "\"7a011b66275f244d3f21\""
- buildConfigField "String", "GITHUB_CLIENT_SECRET", "\"eaced8a6655719d8c6848396de97b3f5d7a89fec\""
+ // Github API
+ buildConfigField "String", "GITHUB_CLIENT_ID", "\"c942cd81844d94e7e41b\""
+ buildConfigField "String", "GITHUB_CLIENT_SECRET", "\"f1dd17e70a0614abbd9310b00a310e23c6c8edff\""
// Enable code coverage (Jacoco)
testCoverageEnabled true