Import SQLite Database into Android Emulator

I created an Android application that needs to be connected to the database. I did the database creation. Now my application is not working properly. My question is, how can I import the created database into my Android application that works in the Android emulator?

+3
source share
1 answer

You can use adb push on the command line or import / export DDMS via eclispe to include db in your emulator.

Here, in more detail, step by step: http://www.boringmonday.com/jc/2010/11/22/sqlite-database-on-your-android-emulator/

+4
source

Source: https://habr.com/ru/post/1778577/


All Articles