How do I save files to device storage when the app is installed?

Viewed 30

is there a way to write all the images in the drawables to the device storage when the app is installed? I don’t want to have to check everytime the main activity is created

1 Answers

is there a way to write all the images in the drawables to the device storage when the app is installed?

No. Apps do not get control when they are installed, for security reasons.

Related