Skip to content

Commit

Permalink
Update to latest Flank (#334)
Browse files Browse the repository at this point in the history
* update to latest Flank version for correct test time calculations Flank/flank#2364

* mend
  • Loading branch information
justintuchek authored Aug 16, 2023
1 parent dae0575 commit f5d45ac
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ Use Gradle's [dynamic version syntax] to declare a dynamic version.

=== "Groovy"
``` groovy
flankVersion = "22.+"
flankVersion = "23.+"
```
=== "Kotlin"
``` kotlin
flankVersion.set("22.+")
flankVersion.set("23.+")
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import javax.inject.Inject
open class FlankGradleExtension @Inject constructor(objects: ObjectFactory) : FladleConfig {

companion object {
const val FLANK_VERSION = "22.10.0"
const val FLANK_VERSION = "23.04.0"
}

@get:Input
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ junit-version = "4.13.2"

kotlin = "1.6.21"
agp-version = "4.2.2"
flank-version = "22.10.0"
flank-version = "23.04.0"

[libraries]

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extra:
fladle:
current_release: '0.17.4'
next_release: '0.17.5'
flank_version: '22.10.0'
flank_version: '23.04.0'

site_name: Fladle
site_url: https://runningcode.github.io/fladle/
Expand Down
2 changes: 1 addition & 1 deletion sample-flavors-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ androidComponents {
}

fladle {
flankVersion.set("20.08.4")
flankVersion.set("23.04.0")
variant.set("chocolateDebug")
debugApk.set(project.provider { "${buildDir.toString()}/outputs/apk/chocolate/debug/*.apk" })
serviceAccountCredentials.set(project.layout.projectDirectory.file("flank-gradle-5cf02dc90531.json"))
Expand Down
2 changes: 1 addition & 1 deletion sample-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ android {
}

fladle {
flankVersion.set("22.10.0")
flankVersion.set("23.04.0")
// Project Id is not needed if serviceAccountCredentials are set.
projectId.set("flank-gradle")
useOrchestrator.set(true)
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {

fladle {
async = true
flankVersion = "22.+"
flankVersion = "23.+"
serviceAccountCredentials = project.layout.projectDirectory.file("flank-gradle-5cf02dc90531.json")
// Project Id is not needed if serviceAccountCredentials are set.
// projectId("flank-gradle")
Expand Down

0 comments on commit f5d45ac

Please # to comment.