We can copy database from assets folde by class CopyAssetDatabaseOpenHelper(private val context: Context) { companion object { private val DB_NAME = "dbName.db" fun openDatabase(): SQLiteDatabase { checkDB?.close() } val buffer = ByteArray(1024) currentDB.flush() }
}
val dbFile = context.getDatabasePath(DB_NAME)
if (!dbFile.exists()) {
try {
val checkDB = context.openOrCreateDatabase(DB_NAME, Context.MODE_PRIVATE,null)
copyDatabase(dbFile)
} catch (e: IOException) {
throw RuntimeException("Error creating source database", e)
}
return SQLiteDatabase.openDatabase(dbFile.path, null, SQLiteDatabase.OPEN_READWRITE)
}
private fun copyDatabase(context:Context) {
val dbFile = context.getDatabasePath("logicaldb")
val assetdb = context.assets.open("logicaldb")
val currentDB = FileOutputStream(dbFile)
while (assetdb.read(buffer) > 0) {
currentDB.write(buffer)
Log.d("#DB", "Copying "+buffer.toString())
}
currentDB.close()
assetdb.close()
}
What is Android?
How to get a contact image using a phone number in android?
How do I generate random numbers in Dart?
How to Get bitmap from drawable: Android
How to start a new activity on button click
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to get screen size (width,height) in Android?
How to convert milli seconds to hours, minutes and seconds in Android?
How to avoid multiple button click at same time in android?
How to check Android version?
Check List for Generate Signed APK Android
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is NetworkOnMainThread Exception?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to save activity State in Android?
Fix Play Store Rejection Due to SMS Permission - RRutors
Invoke-customs are only supported starting with android 0 --min-api 26
How to get complete address from latitude and longitude?
How to convert DP to Pixel and Pixel to Dp?
How to install/ uninstall apk by command line ADB
How to reduce APK package size?
ERR_ACCESS_DENIED in Android Webview with sdk 30
Permission denied for window type 2010 in Marshmallow device
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How to stop EditText focus at Activity startup in Android?
FCM Not Receiving Notifications in Android - RRutors
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Decompile APK Files: How to Get Source Code - RRutors Guide
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to Exit android app on back pressed?
How do I check in SQLite whether a table exists?
What is the Different Between val and var in Kotlin?
What are Android Versions available?
Explain Fragment Life Cycle
How to find Android Device UDID or unique ID?
What is "shared preferences" in Android ?
What is Application?
Add Jar/Library Files as Dependency in Android Studio
What is ANR in android?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.