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()
}
How to convert milli seconds to hours, minutes and seconds in Android?
Hide/Disable soft keyboard on Activity launch: Android
Add Jar/Library Files as Dependency in Android Studio
Extract Date and Time from Long Type Variable - RRutors
How to Use Deprecated Handler() in Android - RRutors Guide
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to convert DP to Pixel and Pixel to Dp?
What is "shared preferences" in Android ?
How to Generate signed apk with android studio
How to reduce APK package size?
Explain Fragment Life Cycle
Open PDF in Google Drive with Intent in Android - RRutors
Android Studio project R can't find
Fix Android Emulator Kill Error When Running Your App
How to check Android version?
How to get an image resource by it's name in android?
How to install/ uninstall apk by command line ADB
How to save activity State in Android?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
What is Context?
How to Exit android app on back pressed?
FCM Not Receiving Notifications in Android - RRutors
How to stop EditText focus at Activity startup in Android?
What is ANR? How to avoid and resolve it?
How to get screen size (width,height) in Android?
What are the notifications available in android?
What are Android Versions available?
Permission denied for window type 2010 in Marshmallow device
Check List for Generate Signed APK Android
What is NetworkOnMainThread Exception?
How to validate email address in Android with Kotlin?
How To Set Text Color Programmatically Android TextView?
How to copy database from assets folder in android using kotlin
Decompile APK Files: How to Get Source Code - RRutors Guide
How to avoid multiple button click at same time in android?
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
What is the difference between match_parent and fill_parent?
How to Get bitmap from drawable: Android
How do I generate random numbers in Dart?
ERR_ACCESS_DENIED in Android Webview with sdk 30