Skip to content

Commit

Permalink
Update agp to v8.4.0 (#1379)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [com.android.test](https://developer.android.com/studio/build)
([source](https://android.googlesource.com/platform/tools/base)) |
plugin | minor | `8.3.2` -> `8.4.0` |
| [com.android.library](https://developer.android.com/studio/build)
([source](https://android.googlesource.com/platform/tools/base)) |
plugin | minor | `8.3.2` -> `8.4.0` |
| [com.android.application](https://developer.android.com/studio/build)
([source](https://android.googlesource.com/platform/tools/base)) |
plugin | minor | `8.3.2` -> `8.4.0` |
| [com.android.tools.build:gradle](http://tools.android.com/)
([source](https://android.googlesource.com/platform/tools/base)) |
dependencies | minor | `8.3.2` -> `8.4.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMzEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

---------

Co-authored-by: Zac Sweers <[email protected]>
  • Loading branch information
slack-oss-bot and ZacSweers authored May 1, 2024
1 parent 8ebb890 commit a86d7dd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class RememberSaveableBackstackTest {
val rootScreen by mutableStateOf<Screen>(TestScreen.ScreenA)
var dummyData by mutableStateOf(false)
moleculeFlow(RecompositionMode.Immediate) {
dummyData
@Suppress("UNUSED_EXPRESSION") dummyData
rememberSaveableBackStack(rootScreen)
}
.test {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ org.gradle.jvmargs=-Xms1g -Xmx4g -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=1g -
android.useAndroidX=true

# Force use of the latest android lint version
android.experimental.lint.version=8.4.0-alpha09
android.experimental.lint.version=8.5.0-alpha07

# Helps make baseline profile generation more reliable
# https://issuetracker.google.com/issues/287312019
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ androidx-annotation = "1.7.1"
androidx-appcompat = "1.6.1"
androidx-browser = "1.8.0"
androidx-lifecycle = "2.7.0"
agp = "8.3.2"
agp = "8.4.0"
anvil = "2.4.9"
atomicfu = "0.24.0"
benchmark = "1.2.4"
Expand Down
10 changes: 7 additions & 3 deletions samples/tutorial/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,12 @@ kotlin {
}
}

tasks.withType<JavaCompile>().configureEach {
options.release.set(libs.versions.jvmTarget.map { it.toInt() })
}
tasks
.withType<JavaCompile>()
.named {
// Don't set the release flag on the android JavaCompile task
!it.endsWith("WithJavac")
}
.configureEach { options.release.set(libs.versions.jvmTarget.map(String::toInt)) }

compose.desktop { application { mainClass = "com.slack.circuit.tutorial.MainKt" } }

0 comments on commit a86d7dd

Please sign in to comment.