菜鸟教程小白 发表于 2022-12-13 03:57:37

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


                                            <p><p>我刚刚将我的 ios 应用提交到应用商店(使用 react-native 构建)。由于我不得不将应用程序发布,我不得不在 Xcode 中进行一些更改,例如禁用 ATS、 Debug模式等,我已经进行了很多更改。现在我想进行下一次更新,但我不确定如何恢复我更改的所有选项。有人可以告诉我我该怎么做吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>只有两个简单的步骤:</p>

<ol>
<li><p>将方案发布更改为调试:
更改方案只需转到 <code>Product->Scheme->Edit Scheme</code>
并将构建配置更改为 <strong>Debug</strong></p></li>
<li><p>在 <code>AppDelegate.m</code> 中更改 <code>jsCodeLocation</code> 路径。
那就是</p>

<pre><code>//this is for release scheme

jsCodeLocation = [ URLForResource:@&#34;main&#34; withExtension:@&#34;jsbundle&#34;];

//this is for debug scheme

jsCodeLocation = [ jsBundleURLForBundleRoot:@&#34;index&#34; fallbackResource:nil];

//this is what you want
</code></pre> </li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - React Native 如何在发布应用程序后恢复到开发模式,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/48621203/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/48621203/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - React Native 如何在发布应用程序后恢复到开发模式