diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 82659e7a5..bb0f331c5 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -196,12 +196,14 @@ dependencies { implementation(libs.androidx.lifecycle.runtime.ktx) implementation(libs.compose.ui) - implementation(libs.compose.material3) implementation(libs.compose.icons) implementation(libs.compose.preview) debugImplementation(libs.compose.tooling) androidTestImplementation(libs.compose.junit4) + implementation(libs.compose.activity) + implementation(libs.compose.material3) + implementation(libs.compose.navigation) testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) @@ -238,7 +240,7 @@ dependencies { implementation(libs.others.utilcodex) implementation(libs.others.activityResultLauncher) - implementation(libs.others.floating.bubble.view) + implementation(libs.others.floatingBubbleView) implementation(libs.destinations.core) ksp(libs.destinations.ksp) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 623afdc7d..b82c2c480 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -24,6 +24,7 @@ compose_junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = compose_icons = { module = "androidx.compose.material:material-icons-extended", version.ref = "compose" } compose_material3 = { module = "androidx.compose.material3:material3", version = "1.3.0" } compose_activity = { module = "androidx.activity:activity-compose", version = "1.9.2" } +compose_navigation = { module = "androidx.navigation:navigation-compose", version = "2.8.2" } tencent_mmkv = { module = "com.tencent:mmkv", version = "1.3.9" } rikka_processor = { module = "dev.rikka.tools.refine:annotation-processor", version.ref = "rikka" } rikka_annotation = { module = "dev.rikka.tools.refine:annotation", version.ref = "rikka" } @@ -32,7 +33,7 @@ rikka_shizuku_provider = { module = "dev.rikka.shizuku:provider", version.ref = lsposed_hiddenapibypass = { module = "org.lsposed.hiddenapibypass:hiddenapibypass", version = "4.3" } others_utilcodex = { module = "com.blankj:utilcodex", version = "1.31.1" } others_activityResultLauncher = { module = "com.github.DylanCaiCoding:ActivityResultLauncher", version = "1.1.2" } -others_floating_bubble_view = { module = "io.github.torrydo:floating-bubble-view", version = "0.6.5" } +others_floatingBubbleView = { module = "io.github.torrydo:floating-bubble-view", version = "0.6.5" } androidx_appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.0" } androidx_core_ktx = { module = "androidx.core:core-ktx", version = "1.13.1" } androidx_lifecycle_runtime_ktx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version = "2.8.6" }