Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update android.gradleplugin to v8.1.0 #551

Merged
merged 4 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ internal val Project.isAndroid: Boolean get() = pluginManager.hasPlugin("com.and
internal val Project.isJavaPlatform: Boolean get() = pluginManager.hasPlugin("org.gradle.java-platform")

internal fun Project.android(
configure: CommonExtension<*, *, *, *>.() -> Unit,
configure: CommonExtension<*, *, *, *, *>.() -> Unit,
) = when {
isAndroidApplication -> androidApplication(configure)
isAndroidLibrary -> androidLibrary(configure)
Expand All @@ -67,7 +67,7 @@ internal fun Project.androidTest(
) = configure<TestExtension>(configure)

internal fun Project.configureAndroid(
configure: CommonExtension<*, *, *, *>.() -> Unit,
configure: CommonExtension<*, *, *, *, *>.() -> Unit,
) = android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
accompanist = "0.30.1"
android-gradlePlugin = "8.0.2"
android-gradlePlugin = "8.1.0"
androidx-activity = "1.7.2"
androidx-appCompat = "1.6.1"
androidx-compose-bom = "2023.04.01"
Expand Down
6 changes: 3 additions & 3 deletions spark/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
<!--Badge-->
<string name="spark_exceed_max_badge_number_a11y">Plus de %1$d nouvelles notifications</string>
<string name="spark_badge_numberless_a11y">Nouvelle notification</string>
<plurals name="spark_badge_a11y">
<item quantity="one" tools:ignore="UnusedQuantity">%d nouvelle notification</item>
<plurals name="spark_badge_a11y" tools:ignore="UnusedQuantity">
<item quantity="one">%d nouvelle notification</item>
<item quantity="other">%d nouvelles notifications</item>
<item quantity="many">%d nouvelles notifications</item>
</plurals>
Expand All @@ -60,4 +60,4 @@
<string name="spark_textfield_content_description">Obligatoire</string>
<string name="spark_textfield_delete_a11y">Tout supprimer</string>

</resources>
</resources>
Loading