I have an .xls file that I would like to encapsulate next to the apk so that at the time of installing the app it uses that file to populate a database. How to do?
I have an .xls file that I would like to encapsulate next to the apk so that at the time of installing the app it uses that file to populate a database. How to do?
You can include your .xls file in the res/raw/
folder. There is also a assets/
folder in the project, and there is little difference between saving to it or the res/raw/
folder. You can learn a little bit more about the differences between this link in the documentation.