What is the change that i need to do to implement an Iphone Database (.sqlite) to my android project?
Thanks for help
Android also uses SQLite, so same DB should work.
Android comes with SQLite3, you can either create your database from ground up or you can ship your application with a pre-populated database.
The following might prove useful:
1. SQLite Basics
2. Ship Android application with database
3. Using your own SQLite database in Android applications