Release APK Not Updating with JavaScript Code

Release APK Not Updating With JavaScript Code

I deleted the index.android.* files in android/app/src/main/assets/ directory. Then in the project root, ran

react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

Then I regenerated the signed APK and voila!

EDIT: If you are using a newer project, you may not have an index.android.js only index.js. If that's the case, you'll want to change it to:

react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

The release build apk is not reflecting the changes made in source code why ? -React native

react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle

run this command.. may be it's sounds weird but it's work for me

reference : https://stackoverflow.com/a/60015205/6654562



Related Topics



Leave a reply



Submit