refactor: move datastore module to common

This commit is contained in:
Harsh Shandilya 2025-06-07 09:13:02 +05:30
parent d31da62cfe
commit 93b593bd41
3 changed files with 2 additions and 2 deletions

View file

@ -40,6 +40,7 @@ composeCompiler {
dependencies {
api(libs.androidx.compose.ui)
api(libs.androidx.datastore)
api(libs.dagger)
api(libs.javax.inject)
api(projects.api)

View file

@ -4,7 +4,7 @@
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
package dev.msfjarvis.claw.core.persistence
package dev.msfjarvis.claw.common.persistence
import android.content.Context
import androidx.datastore.core.DataMigration

View file

@ -25,7 +25,6 @@ dependencies {
api(libs.napier)
api(libs.okhttp.core)
api(libs.retrofit)
api(libs.androidx.datastore)
implementation(platform(libs.okhttp.bom))
implementation(libs.kotlinx.serialization.core)