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()
}
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Permission denied for window type 2010 in Marshmallow device
How to install/ uninstall apk by command line ADB
How to stop EditText focus at Activity startup in Android?
ERR_ACCESS_DENIED in Android Webview with sdk 30
How to get complete address from latitude and longitude?
Invoke-customs are only supported starting with android 0 --min-api 26
What is "shared preferences" in Android ?
Decompile APK Files: How to Get Source Code - RRutors Guide
What is the difference between match_parent and fill_parent?
What is Intent? What is the difference between an implicit intent and an explicit intent?
Open PDF in Google Drive with Intent in Android - RRutors
How to Exit android app on back pressed?
Android Studio project R can't find
How to Use Deprecated Handler() in Android - RRutors Guide
What are Android Versions available?
How to start a new activity on button click
How to copy database from assets folder in android using kotlin
What are the notifications available in android?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to save activity State in Android?
Check List for Generate Signed APK Android
How to Generate signed apk with android studio
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is NetworkOnMainThread Exception?
How to convert DP to Pixel and Pixel to Dp?
How to validate email address in Android with Kotlin?
How to reduce APK package size?
How to find Android Device UDID or unique ID?
How To Set Text Color Programmatically Android TextView?
Set Activity to Fullscreen Mode in Android - RRutors
What is Android Fragments?
What is ANR? How to avoid and resolve it?
Extract Date and Time from Long Type Variable - RRutors
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is the Different Between val and var in Kotlin?
What is Android?
How to get a contact image using a phone number in android?
Hide/Disable soft keyboard on Activity launch: Android
How to get an image resource by it's name in android?