Skip to content

Instantly share code, notes, and snippets.

@wadva474
Created August 13, 2023 21:58
Show Gist options
  • Save wadva474/18b8e26e6d5d87ca120c1dfc266ad899 to your computer and use it in GitHub Desktop.
Save wadva474/18b8e26e6d5d87ca120c1dfc266ad899 to your computer and use it in GitHub Desktop.
//Android module for SqlDriver
actual val platformModule: Module = module {
single {
AndroidSqliteDriver(NoteDatabase.Schema,get(),"NotesDb")
}
}
//Ios module for SqlDriver
actual val platformModule : Module = module {
single {
NativeSqliteDriver(NoteDatabase.Schema, "ReminderDb")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment