Search code examples
androidreact-nativeapk

How to generate Android app bundle in React Native?


I used the official documentation of React Native to build apk file. All other procedures worked fine but creating aab file is not working for me. I used the following command cd android && ./gradlew bundleRelease But it's not working on Windows. It is just giving me error of ". is not recognized"


Solution

  • to create main js Bundle

    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/
    

    and then run

    cd android && ./gradlew assembleRelease