I have an Android app which uses an SQLite database of 3MB. If I distribute this in the assets folder and then copy it to data, I will end up with 2 copies at a cost of 6MB.
Is there any alternative to this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can host the information on a server and then, on the initial startup of the application, grab the necessary data. It probably isn’t the solution you are looking for but it will work.