Last active
September 11, 2024 09:50
-
-
Save 4sskick/26cf4b3fc5fa50267ff341ce77144052 to your computer and use it in GitHub Desktop.
index.android.bundle need to generate everytime generate application file variant release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
so, in react native specific platform Android, they gonna read bundled file which generated by minified of index.js to make it smoother when aplication run. If somehow the `index.android.bundle` file not found, you can generate by your self. | |
run command `npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle` | |
it will generate fil `index.android.bundle` under folder `android/app/src/main/assets` | |
after finish, can run using release version apk file or using command | |
`npx react-native run-android --variant=release` | |
ref: | |
- https://medium.com/@naandalist/what-is-index-android-bundle-in-react-native-and-why-you-shouldnt-commit-to-repository-be5774b26652 | |
- https://stackoverflow.com/a/56040856 | |
- https://stackoverflow.com/a/44476757 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment