Merge pull request #4115 from ByteHamster/gradle-publisher-credentials

Switched to json credentials for Google Play
This commit is contained in:
H. Lehmann 2020-05-04 22:41:26 +02:00 committed by GitHub
commit c4076e9fd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -182,12 +182,11 @@ dependencies {
androidTestImplementation 'androidx.test:rules:1.2.0'
}
if (project.hasProperty("antennaPodServiceAccountEmail")) {
if (project.hasProperty("antennaPodPlayPublisherCredentials")) {
apply plugin: 'com.github.triplet.play'
play {
track = 'alpha'
serviceAccountEmail = antennaPodServiceAccountEmail
serviceAccountCredentials = file(antennaPodPk12File)
serviceAccountCredentials = file(antennaPodPlayPublisherCredentials)
}
}