Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-efremov committed Oct 22, 2024
1 parent 893084b commit 6dad454
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ fun coreStorageModule(storagePrefix: String = String.Empty, bundleId: String) =
schema = AndroidCoreDatabase.Schema,
context = androidContext(),
name = get<DatabaseConfig>().ANDROID_CORE_DB_NAME,
factory = getSupportFactory(androidContext(), get(named(AndroidBuildVariantDITags.DB_PASSPHRASE)), null, false) //todo: create a separate DB_PASSHPHRASE
factory = getSupportFactory(androidContext(), get(named(AndroidBuildVariantDITags.DB_PASSPHRASE))) //todo: create a separate DB_PASSHPHRASE
)
}
}
Expand All @@ -200,7 +200,7 @@ fun sdkBaseStorageModule(databaseSchema: SqlSchema<QueryResult.Value<Unit>>, dat
schema = databaseSchema,
context = androidContext(),
name = databaseName,
factory = getSupportFactory(androidContext(), get(named(AndroidBuildVariantDITags.DB_PASSPHRASE)), null, false)
factory = getSupportFactory(androidContext(), get(named(AndroidBuildVariantDITags.DB_PASSPHRASE)))
)
}
}

0 comments on commit 6dad454

Please sign in to comment.