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

View File

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