Skip to content

Commit 6a17351

Browse files
committed
example: Fix wrong package
1 parent e3e0b18 commit 6a17351

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composeApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ val generateVersionInfo by tasks.registering {
189189
val file = file("src/commonMain/kotlin/utils/VersionInfo.kt")
190190
file.writeText(
191191
"""
192-
package misc
192+
package utils
193193
194194
object VersionInfo {
195195
const val VERSION_NAME = "$verName"

composeApp/src/commonMain/kotlin/ThirdPage.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import androidx.compose.runtime.Composable
55
import androidx.compose.runtime.MutableState
66
import androidx.compose.ui.Modifier
77
import androidx.compose.ui.unit.dp
8-
import misc.VersionInfo
8+
import utils.VersionInfo
99
import top.yukonga.miuix.kmp.basic.Card
1010
import top.yukonga.miuix.kmp.basic.LazyColumn
1111
import top.yukonga.miuix.kmp.basic.ScrollBehavior

0 commit comments

Comments
 (0)