OStack程序员社区-中国程序员成长平台

标题: ios - React Native 如何在发布应用程序后恢复到开发模式 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 03:57
标题: ios - React Native 如何在发布应用程序后恢复到开发模式

我刚刚将我的 ios 应用提交到应用商店(使用 react-native 构建)。由于我不得不将应用程序发布,我不得不在 Xcode 中进行一些更改,例如禁用 ATS、 Debug模式等,我已经进行了很多更改。现在我想进行下一次更新,但我不确定如何恢复我更改的所有选项。有人可以告诉我我该怎么做吗?



Best Answer-推荐答案


只有两个简单的步骤:

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

  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
    

关于ios - React Native 如何在发布应用程序后恢复到开发模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48621203/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4