Skip to content

Commit 56ad17c

Browse files
authored
Merge pull request #21 from MiPushFramework/canary
fix(ci): remove Google Play publishing
2 parents e28202c + 55dd1c1 commit 56ad17c

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ cache:
1313
- "$HOME/.gradle/wrapper/"
1414
script:
1515
- "./gradlew exportVersion --daemon"
16-
# The plugin will build it and publish it, we currently don't have
17-
# a way to upload an existing apk.
18-
# See https://github.com/Triple-T/gradle-play-publisher/issues/360
19-
- chmod a+x ./tools/ci_build.sh
20-
- ./tools/ci_build.sh
16+
- ./gradlew :app:assembleRelease --daemon --parallel
2117
before_install:
2218
- yes | sdkmanager "platforms;android-28"
2319
- chmod a+x gradlew

app/build.gradle

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ buildscript {
66
dependencies {
77
classpath 'com.android.tools.build:gradle:3.6.1'
88
classpath 'com.google.android.gms:oss-licenses-plugin:0.9.4'
9-
classpath "com.github.triplet.gradle:play-publisher:2.0.0-rc2"
109
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1110
}
1211
}
@@ -17,16 +16,6 @@ apply plugin: 'kotlin-android'
1716
apply plugin: 'kotlin-kapt'
1817
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
1918

20-
if (file("play-store-api.json").exists()) {
21-
apply plugin: 'com.github.triplet.play'
22-
play {
23-
serviceAccountCredentials = file("play-store-api.json")
24-
track = "beta"
25-
userFraction = 1.0
26-
resolutionStrategy = "ignore"
27-
}
28-
}
29-
3019
def xmpushProperties = new Properties()
3120
def conf = project.file("xmpush.properties")
3221
if (conf.exists()) xmpushProperties.load(conf.newDataInputStream())

0 commit comments

Comments
 (0)