Browse Source

Merge branch 'renovate/com.github.triplet.play-3.x' into 'develop'

Update plugin com.github.triplet.play to v3

See merge request funkwhale/funkwhale-android!98
housekeeping/mavenCentral
Ryan Harg 3 years ago
parent
commit
1b6a246411
  1. 12
      app/build.gradle.kts

12
app/build.gradle.kts

@ -8,7 +8,7 @@ plugins {
id("org.jlleitschuh.gradle.ktlint") version "10.1.0" id("org.jlleitschuh.gradle.ktlint") version "10.1.0"
id("com.gladed.androidgitversion") version "0.4.14" id("com.gladed.androidgitversion") version "0.4.14"
id("com.github.triplet.play") version "2.8.1" id("com.github.triplet.play") version "3.6.0"
id("de.mobilej.unmock") id("de.mobilej.unmock")
id("com.github.ben-manes.versions") id("com.github.ben-manes.versions")
jacoco jacoco
@ -141,12 +141,12 @@ ktlint {
} }
play { play {
isEnabled = props.hasProperty("play.credentials") enabled.set(props.hasProperty("play.credentials"))
if (isEnabled) { if (enabled.get()) {
serviceAccountCredentials = file(props.getProperty("play.credentials")) serviceAccountCredentials.set(file(props.getProperty("play.credentials")))
defaultToAppBundles = true defaultToAppBundles.set(true)
track = "beta" track.set("beta")
} }
} }

Loading…
Cancel
Save