React Native如何在发布应用程序后恢复到开发模式

时间:2018-02-05 11:06:15

标签: ios xcode react-native

我刚刚将ios应用程序提交到应用程序商店(使用react-native构建)。由于我不得不移动应用程序以释放,我不得不在Xcode中进行一些更改,如禁用ATS,调试模式等,我做了很多更改。现在我想要下一次更新,但我不知道如何恢复我已经改变的所有选项。有人可以告诉我如何做到这一点吗?

1 个答案:

答案 0 :(得分:2)

只有简单的两个步骤:

  1. 将方案版本更改为调试: 改变方案只需转到Product->Scheme->Edit Scheme 并将构建配置更改为调试

  2. AppDelegate.m更改jsCodeLocation路径中。

    //this is for release scheme
    
    jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
    
    //this is for debug scheme
    
    jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
    
    //this is what you want