My program needs large .txt file to be stored on SD-card (so, I want to redistribute it with .apk, without creation from the program). How I can attach the file (created on PC) to .apk?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You can save it in /res/raw folder
If you save your file as yourfile.txt

InputStream inputStream = this.getResources().openRawResource(R.raw.yourfile);
link|improve this answer
feedback

As far as I know you can open a .apk with zip and add files. Where is no magic :)

link|improve this answer
I didn't mean this. And anyways, you must sign your .apk before publishing - if you'll modify it, the signatures will not match. – RankoR Feb 3 '11 at 13:25
sorry, misunderstanding. – programmersbook Feb 3 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.