From 5027f9a1c2d155d26f1794e959183cf2fd07c38f Mon Sep 17 00:00:00 2001 From: Catfriend1 <16361913+Catfriend1@users.noreply.github.com> Date: Sun, 19 Sep 2021 15:30:10 +0200 Subject: [PATCH] build.gradle: Update com.github.triplet.play to 3.6.0 --- app/build.gradle | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4f84434fd..e95a8a807 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,7 @@ plugins { id 'com.android.application' id 'com.github.ben-manes.versions' - id 'com.github.triplet.play' version '2.8.0' + id 'com.github.triplet.play' version '3.6.0' } dependencies { @@ -79,15 +79,6 @@ android { } } - playConfigs { - release { - serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json') - } - gplay { - serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json') - } - } - compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 @@ -112,9 +103,9 @@ android { } play { - serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json') + serviceAccountCredentials = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE")) track = 'beta' - resolutionStrategy = 'ignore' + resolutionStrategy = com.github.triplet.gradle.androidpublisher.ResolutionStrategy.IGNORE defaultToAppBundles = true }