I want to make sure I am creating my file system properly for my react native app.
Currently, I receive images on the app from the user, and then I save them in an images folder within the project. The file system's structure looks like this:
Computer
|
User
|
RN_Project ------------------------
| |
Source ------------------- App.js
| | |
Images component1.js component2.js
What I am wondering is whether the Images folder will contribute to the size of the app on the App Store? Am I correct in storing user uploaded images in this file system? Or am I supposed to put the image folder elsewhere on the computer? What contributes to the size of the download on the App Store?
My gut feeling is that the images folder should not be in the app's file system, but please let me know