Add signing task for internal builds.

This commit is contained in:
Greyson Parrelli 2020-10-30 08:17:29 -04:00
parent 88733473e2
commit d40783f794

View File

@ -455,6 +455,12 @@ task signProductionPlayRelease {
} }
} }
task signInternalPlayRelease {
doLast {
signProductionRelease(android.applicationVariants.find { (it.name == 'internalRelease') })
}
}
task signProductionWebsiteRelease { task signProductionWebsiteRelease {
doLast { doLast {
def variant = android.applicationVariants.find { (it.name == 'websiteRelease') } def variant = android.applicationVariants.find { (it.name == 'websiteRelease') }