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 NetworkOnMainThread Exception?
How to save activity State in Android?
Check List for Generate Signed APK Android
How to get a contact image using a phone number in android?
Hide/Disable soft keyboard on Activity launch: Android
What are symmetric and asymmetric encryption in the way Android interacts with the server?
Could not inflate Behavior subclass android.support.design.widget. BottomSheetBehavior How resolve
Duplicate files during packaging of APK” build.gradle issue: Android Studio
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to convert milli seconds to hours, minutes and seconds in Android?
How do i load image from drawable folder in Jetpack Compose?
ERROR Android emulator gets killed when I try to run my application and choose an emulator it ret
Invoke-customs are only supported starting with android 0 --min-api 26
Android FCM not receiving notifications when app is removed from background
What are Android Versions available?
Android Studio project R can't find
How to get complete address from latitude and longitude?
How to install/ uninstall apk by command line ADB
Android Activity FullScreen - How to set activity to fullscreen mode in Android?
What are the notifications available in android?
How to convert DP to Pixel and Pixel to Dp?
Explain Fragment Life Cycle
How to add jar/library files as a dependency in Android studio gradle file
How to Exit android app on back pressed?
How to get screen size (width,height) in Android?
How do I generate random numbers in Dart?
How to stop EditText focus at Activity startup in Android?
What is the Different Between val and var in Kotlin?
How can i comment inside xml file in android studio?
How to check Android version?
How to start a new activity on button click
Intent for Drive PDF Viewer - How to open PDF in Google Drive with intent
Key Points to remember while develop the Android Application.
How to copy database from assets folder in android using kotlin
Permission denied for window type 2010 in Marshmallow device
What is Android?
How to get an image resource by it's name in android?
What is Intent? What is the difference between an implicit intent and an explicit intent?
What happens next when the device switches between portrait and landscape?
'constructor Handler()' is deprecated. Deprecated in Java, How to use Handler() class in And