菜鸟教程小白 发表于 2022-12-13 01:08:33

ios - 如何读取 info.plist 中的环境变量?


                                            <p><p>我正在终端中设置一个变量</p>

<pre><code>export VAR=1.0.0
</code></pre>

<p>我必须将它从 ~/.bash_profile 读取到 info.plist 中,例如:</p>

<pre><code>&lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
&lt;string&gt;VAR&lt;/string&gt;
</code></pre>

<p>这样我就可以进行自动化构建了。有没有办法读取变量?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 <code>info.plist</code> 中引用变量:</p>
<pre><code>&lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
&lt;string&gt;$(VAR)&lt;/string&gt;
</code></pre>
<p>然后,当您从终端构建项目时,您会为 VAR 注入(inject)值:</p>
<pre><code>xcodebuild build VAR=123 -project myProject.xcodeproj -target myTarget -sdk iphonesimulator
</code></pre>
<p>或者如果环境中设置的变量:</p>
<pre><code>xcodebuild build VAR=${VAR} -project myProject.xcodeproj -target myTarget -sdk iphonesimulator
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何读取 info.plist 中的环境变量?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43513152/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43513152/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何读取 info.plist 中的环境变量?