From d40783f794cec7e88fac3de2c6cfa03346deef6b Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Fri, 30 Oct 2020 08:17:29 -0400 Subject: [PATCH] Add signing task for internal builds. --- app/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 6927907dee..45f5912f19 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -455,6 +455,12 @@ task signProductionPlayRelease { } } +task signInternalPlayRelease { + doLast { + signProductionRelease(android.applicationVariants.find { (it.name == 'internalRelease') }) + } +} + task signProductionWebsiteRelease { doLast { def variant = android.applicationVariants.find { (it.name == 'websiteRelease') }