Tim Hauptmann
02/27/2020, 12:20 PMNativeSqliteDriver(MyDatabase.Schema, "file:///private/var/mobile/Containers/Shared/AppGroup/.../test.db")
But this is forbidden by:
private fun checkFilename(name: String) {
if (name.contains("/")) {
throw IllegalArgumentException(
"File $name contains a path separator"
)
}
}
Someone knows the proper way to setup this?Thomas
02/27/2020, 12:26 PMTim Hauptmann
02/27/2020, 12:39 PM