From 3c6dc05be1525d90edf655b6176d896505835aa2 Mon Sep 17 00:00:00 2001 From: Ren Amamiya Date: Thu, 9 Jul 2026 11:06:55 +0700 Subject: [PATCH] fix package url --- composeApp/src/androidMain/kotlin/su/reya/coop/MainActivity.kt | 2 +- .../androidMain/kotlin/su/reya/coop/storage/SecretCrypto.kt | 2 +- .../src/androidMain/kotlin/su/reya/coop/storage/SecretStore.kt | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/composeApp/src/androidMain/kotlin/su/reya/coop/MainActivity.kt b/composeApp/src/androidMain/kotlin/su/reya/coop/MainActivity.kt index ec77b12..3f92501 100644 --- a/composeApp/src/androidMain/kotlin/su/reya/coop/MainActivity.kt +++ b/composeApp/src/androidMain/kotlin/su/reya/coop/MainActivity.kt @@ -12,8 +12,8 @@ import androidx.activity.viewModels import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen import androidx.lifecycle.ViewModel import androidx.lifecycle.ViewModelProvider -import su.reya.coop.coop.storage.SecretStore import su.reya.coop.nostr.NostrManager +import su.reya.coop.storage.SecretStore import su.reya.coop.viewmodel.AuthViewModel import su.reya.coop.viewmodel.ChatViewModel import su.reya.coop.viewmodel.NostrViewModel diff --git a/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretCrypto.kt b/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretCrypto.kt index dac0de6..6180c6e 100644 --- a/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretCrypto.kt +++ b/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretCrypto.kt @@ -1,4 +1,4 @@ -package su.reya.coop.coop.storage +package su.reya.coop.storage import android.security.keystore.KeyGenParameterSpec import android.security.keystore.KeyProperties diff --git a/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretStore.kt b/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretStore.kt index 37ffc47..0505f26 100644 --- a/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretStore.kt +++ b/composeApp/src/androidMain/kotlin/su/reya/coop/storage/SecretStore.kt @@ -1,11 +1,10 @@ -package su.reya.coop.coop.storage +package su.reya.coop.storage import android.content.Context import androidx.datastore.preferences.core.edit import androidx.datastore.preferences.core.stringPreferencesKey import androidx.datastore.preferences.preferencesDataStore import kotlinx.coroutines.flow.first -import su.reya.coop.storage.SecretStorage private val Context.dataStore by preferencesDataStore("secret_store")