React-Native Offline Bundle - Images not showing

前端 未结 3 816
感情败类
感情败类 2020-12-29 07:10

I have a React-Native app I\'m trying to deploy in Release mode to my phone. I can bundle the app to the phone. Database, Video and audio assets are all in there but no imag

3条回答
  •  青春惊慌失措
    2020-12-29 07:43

    are the images in xcode or in the file system?, i dont see an --assets-dest in your bundle parameters

    react-native bundle  --minify --dev false --assets-dest ./ios --entry-file index.ios.js --platform ios --bundle-output ios/main.jsbundle
    

    also add the assets folder to xcode like the bundle.

    note that the image assets are only copied if they are required correctly, see the documentation

提交回复
热议问题