From 55dd1c1f9c474647144476740334623db8bccc9d Mon Sep 17 00:00:00 2001 From: Trumeet <17158086+trumeet@users.noreply.github.com> Date: Sun, 9 Aug 2020 14:29:22 -0700 Subject: [PATCH] fix(ci): remove Google Play publishing Signed-off-by: Trumeet <17158086+Trumeet@users.noreply.github.com> --- .travis.yml | 6 +----- app/build.gradle | 11 ----------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 357d0bb..c446525 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,11 +13,7 @@ cache: - "$HOME/.gradle/wrapper/" script: - "./gradlew exportVersion --daemon" -# The plugin will build it and publish it, we currently don't have -# a way to upload an existing apk. -# See https://github.com/Triple-T/gradle-play-publisher/issues/360 -- chmod a+x ./tools/ci_build.sh -- ./tools/ci_build.sh +- ./gradlew :app:assembleRelease --daemon --parallel before_install: - yes | sdkmanager "platforms;android-28" - chmod a+x gradlew diff --git a/app/build.gradle b/app/build.gradle index c599742..5992494 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,6 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.6.1' classpath 'com.google.android.gms:oss-licenses-plugin:0.9.4' - classpath "com.github.triplet.gradle:play-publisher:2.0.0-rc2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -17,16 +16,6 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' apply plugin: 'com.google.android.gms.oss-licenses-plugin' -if (file("play-store-api.json").exists()) { - apply plugin: 'com.github.triplet.play' - play { - serviceAccountCredentials = file("play-store-api.json") - track = "beta" - userFraction = 1.0 - resolutionStrategy = "ignore" - } -} - def xmpushProperties = new Properties() def conf = project.file("xmpush.properties") if (conf.exists()) xmpushProperties.load(conf.newDataInputStream())