美文网首页
ReactNative 笔记记录-待整理

ReactNative 笔记记录-待整理

作者: Scott昵称被占用 | 来源:发表于2018-03-22 13:20 被阅读18次

    React Native离线打包

    Android 打包指令

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

    IOS 打包指令

    react-native bundle --entry-file index.js --bundle-output ./ios/main.jsbundle --platform ios --assets-dest ./ios/bundle --dev false
    
    jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
      
    //jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
    

    相关文章

      网友评论

          本文标题:ReactNative 笔记记录-待整理

          本文链接:https://www.haomeiwen.com/subject/ynkaqftx.html