Pushed the private key for accident...

This commit is contained in:
Karim Abou Zeid 2015-08-29 13:18:59 +02:00
commit 3bd18d11e8
2 changed files with 3 additions and 4 deletions

3
.gitignore vendored
View file

@ -42,5 +42,4 @@ captures/
.DS_Store .DS_Store
# Private Keys # Private Keys
keystore.properties /privatekeys
play-developer-key.p12

View file

@ -22,7 +22,7 @@ repositories {
// For pushing APKs directly to Google Play. Won't work without the .p12 key. // For pushing APKs directly to Google Play. Won't work without the .p12 key.
play { play {
serviceAccountEmail = '992499570703-57nnnb8m7ha6sri9tcov8nhgkg3fc9i9@developer.gserviceaccount.com' serviceAccountEmail = '992499570703-57nnnb8m7ha6sri9tcov8nhgkg3fc9i9@developer.gserviceaccount.com'
pk12File = file('../play-developer-key.p12') pk12File = file('../privatekeys/play-developer-key.p12')
} }
android { android {
@ -39,7 +39,7 @@ android {
storePassword 'kabouzeid' storePassword 'kabouzeid'
// "keystore.properties" file containing the release keys password is needed in order to sign the apk for release // "keystore.properties" file containing the release keys password is needed in order to sign the apk for release
File propFile = project.rootProject.file('keystore.properties') File propFile = project.rootProject.file('privatekeys/keystore.properties')
if (propFile.exists()) { if (propFile.exists()) {
Properties properties = new Properties() Properties properties = new Properties()
properties.load(propFile.newDataInputStream()) properties.load(propFile.newDataInputStream())