From c19858069bd5cce01d9a5d23601efc83c2d6d2c5 Mon Sep 17 00:00:00 2001 From: Adam Jones Date: Mon, 7 Dec 2020 23:25:55 +0000 Subject: [PATCH] #171: Bump Triple-T gradle-play-publisher (#4083) For alpha builds we use the gradle-play-publisher to automatically package and publish the app. In older versions there was a compatibility bug with Gradle 6.3 (https://github.com/Triple-T/gradle-play-publisher/issues/797). Using the updated version (2.8.1) should fix the problem. There is version 3.0.0, however I've stuck to 2.8.1 as the breaking change of 3.0.0 is that it no longer supports PKCS keys (.p12 files) which we use. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b6114ca510..cb3ee21f66 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.github.triplet.play' version '2.7.2' apply false + id 'com.github.triplet.play' version '2.8.1' apply false } apply from: '../gitutils.gradle' apply plugin: 'com.android.application'