Recently when i buld my signed APK my Android App loads without any Images. I had this before too, but forgot how i fixed it :( . No idea anymore what the reason was...Maybe someone has an idea?
When i build the debug apk (react-native run-android) Images are loaded.....
Hey BigPun86, thanks for reporting this issue!
React Native, as you've probably heard, is getting really popular and truth is we're getting a bit overwhelmed by the activity surrounding it. There are just too many issues for us to manage properly.
react-native or for more real time interactions, ask on Discord in the #react-native channel.I had the same problem.
You can see #4084
To create bundle and assets :
react-native bundle --assets-dest ./android/app/src/main/res/ --entry-file ./index.android.js --bundle-output ./android/app/src/main/assets/index.android.bundle --platform android -dev false
After, in android project on Android Studio, you can go to Build, Generated APK.
Finally, install your apk with :
adb install app-release.apk
cd android && ./gradlew assembleRelease should bundle the assets for you in recent releases of RN.
@facebook-github-bot stack-overflow
@PCharpentier "... -dev false" must change to "... --dev false" or may get an error message. Test on rn 0.35
Most helpful comment
I had the same problem.
You can see #4084
To create bundle and assets :
After, in android project on Android Studio, you can go to Build, Generated APK.
Finally, install your apk with :