Skip to content

Commit 5b74507

Browse files
authored
Minor changes to fix plugin (commons-app#2121)
1 parent c40c5ed commit 5b74507

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

app/build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,11 @@ if(isRunningOnTravis && file('../play.p12').exists()) {
229229
track = "alpha"
230230
userFraction = 1
231231
serviceAccountEmail = System.getenv("SERVICE_ACCOUNT_NAME")
232-
pk12File = file("../play.p12")
232+
serviceAccountCredentials = file("../play.p12")
233+
234+
resolutionStrategy = "auto"
235+
outputProcessor { // this: ApkVariantOutput
236+
versionNameOverride = "$versionNameOverride.$versionCode"
237+
}
233238
}
234239
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

15-
classpath 'com.github.triplet.gradle:play-publisher:1.2.2'
15+
classpath "com.github.triplet.gradle:play-publisher:2.0.0-rc1"
1616
}
1717
}
1818

0 commit comments

Comments
 (0)