You need to manually create the bundle for a debug build. Bundle debug build:
react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug
Create debug build: cd android ./gradlew assembleDebug For Windows: gradlew assembleRelease Generated apk will be located at android/app/build/outputs/apk P.S. Another approach might be to modify gradle scripts.
Note : mark android.enableAapt2=false on gradle.properties file to solve .flat icon error