Allow to configure play api key
This commit is contained in:
parent
1c9b4be17a
commit
33f8bd78a4
|
@ -197,8 +197,16 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
play {
|
play {
|
||||||
|
if (project.hasProperty("antennaPodServiceAccountEmail")) {
|
||||||
|
serviceAccountEmail = antennaPodServiceAccountEmail
|
||||||
|
} else {
|
||||||
serviceAccountEmail = '522080222319-compute@developer.gserviceaccount.com'
|
serviceAccountEmail = '522080222319-compute@developer.gserviceaccount.com'
|
||||||
|
}
|
||||||
|
if (project.hasProperty("antennaPodPk12File")) {
|
||||||
|
pk12File = file(antennaPodPk12File)
|
||||||
|
} else {
|
||||||
pk12File = file('../serviceaccount-c3d7d0f61387.p12')
|
pk12File = file('../serviceaccount-c3d7d0f61387.p12')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// about.html is templatized so that we can automatically insert
|
// about.html is templatized so that we can automatically insert
|
||||||
|
|
Loading…
Reference in New Issue