I am currently developing an iOS app with react native. Users can upload a .obj file to my app. The app will then upload the uploaded .obj file to firebase storage.
Therefore, I have 2 ways to reference the file:
- The uploaded .obj file, and
- The URL obtained after uploaded the .obj file
I have tried the module: react-native-gl-model-view. However, this requires the .obj file to be included in Xcode which I thinks it cannot be done programmatically with react native.
I would like to know what module does other developers use to achieve this?