React native run-android do not updating modified code

后端 未结 21 3183
故里飘歌
故里飘歌 2020-12-13 06:02

I am using React native 0.52.0 and react-native-cli 2.0.1 on my Windows PC for android development. Despite all the changes i have made. When I run react-native run-an

21条回答
  •  执念已碎
    2020-12-13 06:29

    Open package.json file and update this code.

    "scripts": {
    "android": "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 && react-native run-android",
    "ios": "react-native run-ios"
    },
    

    Assuming that you are in the right folder, try to do this:

    Run this command only it will automatically both commands.

    npm run android

提交回复
热议问题