Skip to content

Commit c85f967

Browse files
committed
build(deps): Remove useless graphics-shapes
1 parent 1ff5b95 commit c85f967

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

gradle/libs.versions.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
android-gradle-plugin = "8.12.0"
33
androidx-activity-compose = "1.10.1"
44
androidx-window = "1.4.0"
5-
androidx-graphics-shapes = "1.0.0-alpha09"
65
compose-hotReload = "1.0.0-beta04"
76
compose-plugin = "1.8.2"
87
dokka = "2.0.0"
@@ -11,7 +10,6 @@ spotless = "7.2.1"
1110

1211
[libraries]
1312
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity-compose" }
14-
androidx-graphics-shapes = { module = "org.jetbrains.androidx.graphics:graphics-shapes", version.ref = "androidx-graphics-shapes" }
1513
androidx-window = { group = "androidx.window", name = "window", version.ref = "androidx-window" }
1614
compose-window-size = { module = "org.jetbrains.compose.material3:material3-window-size-class", version.ref = "compose-plugin" }
1715

iosApp/iosApp/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>1.0.4</string>
1919
<key>CFBundleVersion</key>
20-
<string>512</string>
20+
<string>513</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>CADisableMinimumFrameDurationOnPhone</key>

miuix/build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,13 @@ kotlin {
5454

5555
sourceSets {
5656
androidMain.dependencies {
57-
implementation(libs.androidx.activity.compose)
58-
implementation(libs.androidx.window)
57+
implementation(libs.androidx.activity.compose) // Android BackHandler
58+
implementation(libs.androidx.window) // Android WindowMetrics
5959
}
6060
commonMain.dependencies {
6161
implementation(compose.runtime)
6262
implementation(compose.foundation)
6363
implementation(compose.ui)
64-
implementation(compose.components.resources)
65-
implementation(libs.androidx.graphics.shapes)
6664
implementation(libs.compose.window.size)
6765
}
6866
}

miuix/src/commonMain/kotlin/top/yukonga/miuix/kmp/basic/Icon.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import androidx.compose.ui.semantics.contentDescription
2727
import androidx.compose.ui.semantics.role
2828
import androidx.compose.ui.semantics.semantics
2929
import androidx.compose.ui.unit.dp
30-
import org.jetbrains.compose.resources.stringResource
3130
import top.yukonga.miuix.kmp.theme.LocalContentColor
3231

3332
/**

0 commit comments

Comments
 (0)