Ionic 3-构建android覆盖config.xml

时间:2019-12-08 12:37:49

标签: cordova ionic-framework cordova-android

使用以下命令构建应用时,我的行为很奇怪:

ionic cordova build android

我的文件config.xml变量被覆盖,例如有关“ cordova-plugin-googleplus”的部分丢失了任何变量值:

<plugin name="cordova-plugin-googleplus" spec="^8.1.1">
    <variable name="GEOLOCATION_USAGE_DESCRIPTION" value="To locate you" />
    <variable name="REVERSED_CLIENT_ID" value="com.googleusercontent.apps.xxxxxxxx" />
    <variable name="PLAY_SERVICES_VERSION" value="15.0.1" />
</plugin>

<plugin name="cordova-plugin-googleplus" spec="^8.1.1">
    <variable name="GEOLOCATION_USAGE_DESCRIPTION" value="To locate you" />
    <variable name="REVERSED_CLIENT_ID" value="myreversedclientid" />
    <variable name="PLAY_SERVICES_VERSION" value="15.0.1" />
</plugin>

config.xml文件不应该控制构建过程吗?似乎在构建过程中config.xml文件已“适应”它。

0 个答案:

没有答案