I’m trying to create an app which synchronizes with the server to populate a list.
However as I’m writing from scratch , I would want to at least populate some dummy data into it to test it out.
Should I be populating it from a dummy server or should i try to populate it with a sqlite.db file first and insert it later on from Server without creating hte table ? How are the other possible ways and which one is the best ?
You can create new Sqlite file using SQlite manager and then use these links to copy that database in your application.First put the database (SQlite file)in assets folder and then copy it using method shown in these answers:
Database not copying from assets
adding your own SQLite database to an android application