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 the Different Between val and var in Kotlin?
What is Android Fragments?
How to avoid multiple button click at same time in android?
How to get complete address from latitude and longitude?
Extract Date and Time from Long Type Variable - RRutors
How to get a contact image using a phone number in android?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to start a new activity on button click
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Decompile APK Files: How to Get Source Code - RRutors Guide
What are Android Versions available?
How to install/ uninstall apk by command line ADB
Explain Fragment Life Cycle
Fix Play Store Rejection Due to SMS Permission - RRutors
How to find Android Device UDID or unique ID?
How do I generate random numbers in Dart?
How to reduce APK package size?
How to Exit android app on back pressed?
How to get screen size (width,height) in Android?
How to validate email address in Android with Kotlin?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Permission denied for window type 2010 in Marshmallow device
Key Points to remember while develop the Android Application.
How to convert milli seconds to hours, minutes and seconds in Android?
What is the difference between match_parent and fill_parent?
How to copy database from assets folder in android using kotlin
Fix Android Emulator Kill Error When Running Your App
How To Set Text Color Programmatically Android TextView?
How can i comment inside xml file in android studio?
What is Application?
How to check Android version?
How do I check in SQLite whether a table exists?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
What is Context?
How to Use Deprecated Handler() in Android - RRutors Guide
Android Studio project R can't find
How to save activity State in Android?
Add Jar/Library Files as Dependency in Android Studio
Hide/Disable soft keyboard on Activity launch: Android