Reputation: 17
Is there any possibility to allow the app user to add images to the app's drawable folder?
Upvotes: 0
Views: 96
Reputation: 1006539
No, sorry. Resources are read only at runtime and cannot be modified. You will have to work with the user-supplied images as files or as pieces of content identified by Uri
values.
Upvotes: 3