I deleted the files index.android.*in the directory android/app/src/main/assets/. Then at the root of the project 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 restored the signed APK and voila!
EDIT: If you are using a new project, you may have more than that index.android.js index.js. If this happens, you will 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
source
share