Skip to content

Commit

Permalink
Fixes on gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
Willena committed Nov 2, 2023
1 parent fbaafbe commit 7ceeb4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ plugins {
}

play {
serviceAccountCredentials.set(file("serviceAccountKey.json"))
serviceAccountCredentials.set(file("../serviceAccountKey.json"))
track.set("production")
userFraction.set(1.0D)
releaseStatus.set(com.github.triplet.gradle.androidpublisher.ReleaseStatus.COMPLETED)
}


android {
signingConfigs {
config {
keyAlias 'release'
storeFile file('./Keystore.jks')
storeFile file('../Keystore.jks')
keyPassword 'password'
storePassword 'password'
}
Expand Down

0 comments on commit 7ceeb4c

Please sign in to comment.