当前位置 : 主页 > 手机开发 > cordova >

cordova – 如何在Ionic项目中对config.xml进行持久更改

来源:互联网 收集:自由互联 发布时间:2021-06-10
Following Google Firebase’s instructions(步骤7)我正在尝试将以下内容添加到我的config.xml文件中(在Ionic项目中): universal-links host name="abc123.app.goo.gl" scheme="https" / host name="my-app.firebaseapp.com" sche
Following Google Firebase’s instructions(步骤7)我正在尝试将以下内容添加到我的config.xml文件中(在Ionic项目中):

<universal-links>
    <host name="abc123.app.goo.gl" scheme="https" />
    <host name="my-app.firebaseapp.com" scheme="https">
        <path url="/__/auth/callback"/>
    </host>
</universal-links>

但每次我模拟应用程序时,插入的代码都会被删除.如何在config.xml中添加所需的代码并将其保留在那里,而不使用Ionic(或Cordova)删除修改.

对此的简单解决方案是在运行任何进一步的离子构建/运行之前运行cordova清洁.

>进行/config.xml更改
>运行cordova清洁
>运行离子命令(在平台内重建配置),如ionic cordova run android

如果我正在尝试使用config.xml,我经常将它作为连接命令运行,即cordova clean;离子cordova运行android;

网友评论