• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to edit R.raw.file and update it

Hi!

I have a R.raw.file, and there a important data there, but sometimes i need to update this data and could not find an way to do this.
I tried FileOutputStream and other way. Like below.
String value = "123456"
buffer = value.getBytes();
this.getResources().openRawResourceFd(R.raw.file).createOutputStream().write(buffer);

But I got a Bad File Number exception.

Anyone knows an way to update R.raw.file content?

thanks
 
I don't think you can change these files -- it's part of your signed apk isn't it? If you can, then you're probably missing a permission in your manifest.

If you need to store a few values, try using a preference instead.
 
Back
Top Bottom