Skip to content

Commit 20b21a8

Browse files
committed
fix
1 parent 58fc715 commit 20b21a8

3 files changed

Lines changed: 3 additions & 21 deletions

File tree

android/build.gradle.kts

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,8 @@ android {
5151

5252
dependencies {
5353
implementation(project(":shared"))
54-
implementation("androidx.compose.ui:ui:1.6.8")
55-
implementation("androidx.compose.ui:ui-tooling:1.6.8")
56-
implementation("androidx.compose.ui:ui-tooling-preview:1.6.8")
57-
implementation("androidx.compose.foundation:foundation:1.6.8")
58-
implementation("androidx.compose.material3:material3:1.2.1")
59-
implementation("androidx.compose.runtime:runtime-livedata:1.6.8")
60-
6154
implementation("io.insert-koin:koin-android:4.1.0")
6255
implementation("io.insert-koin:koin-androidx-compose:4.1.0")
63-
64-
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2")
65-
implementation("androidx.activity:activity-compose:1.9.0")
66-
implementation("androidx.navigation:navigation-compose:2.7.7")
67-
implementation("androidx.datastore:datastore-preferences:1.1.1")
68-
69-
implementation("com.google.android.material:material:1.12.0")
70-
implementation("com.github.JamalMulla:ComposePrefs3:1.0.4")
71-
implementation("me.nathanfallet.myapps:myapps-android-compose:1.3.3")
72-
implementation("com.airbnb.android:lottie-compose:6.3.0")
73-
74-
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
56+
implementation("androidx.activity:activity-compose:1.10.1")
57+
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
7558
}

android/src/main/kotlin/com/extopy/AndroidModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ val databaseModule = module {
2121

2222
val repositoryModule = module {
2323
single<INativeSettingsRepository> {
24-
NativeSettingsRepository(get<Context>().getSharedPreferences("latexcards", Context.MODE_PRIVATE))
24+
NativeSettingsRepository(get<Context>().getSharedPreferences("extopy", Context.MODE_PRIVATE))
2525
}
2626
}
2727

ios/Extopy/ExtopyApp.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ struct ExtopyApp: App {
1616

1717
var body: some Scene {
1818
WindowGroup {
19-
//RootView()
2019
ContentView()
2120
.onOpenURL { uri in
2221
ExternalUriHandler.shared.onNewUri(uri: uri.absoluteString)

0 commit comments

Comments
 (0)