Pushed the private key for accident...
This commit is contained in:
parent
f538bf6a33
commit
3bd18d11e8
2 changed files with 3 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -42,5 +42,4 @@ captures/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Private Keys
|
# Private Keys
|
||||||
keystore.properties
|
/privatekeys
|
||||||
play-developer-key.p12
|
|
||||||
|
|
@ -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())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue