I want to use database in my android project. I write codes but I am curious about :when I run the apk file in my phone the database rendered again every time or it is only first time create database ? Because I want the database built only first time ? How can I do this ?
Share
The database will be created the very first time you try to access it and will persist from then on, even when installing a newer version of the app.
Hope that helps.