How to send / encapsulate a file in an .apk to use in the app installation?

5

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?

    
asked by anonymous 24.04.2014 / 21:51

1 answer

4

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.     

24.04.2014 / 21:59