我刚刚将ios应用程序提交到应用程序商店(使用react-native构建)。由于我不得不移动应用程序以释放,我不得不在Xcode中进行一些更改,如禁用ATS,调试模式等,我做了很多更改。现在我想要下一次更新,但我不知道如何恢复我已经改变的所有选项。有人可以告诉我如何做到这一点吗?
答案 0 :(得分:2)
只有简单的两个步骤:
将方案版本更改为调试:
改变方案只需转到Product->Scheme->Edit Scheme
并将构建配置更改为调试
在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