如何将config.xml写入特定的应用程序?

时间:2015-07-20 04:36:09

标签: xml cordova phonegap-build

我正在使用cordova / phonegap创建一个新项目 我的应用程序总是取代较旧但虽然我已经更改过的Phonegap用户。(但它可以在Android中再增加一个应用程序)

这是我的config.xml

<?xml version="1.0" encoding="UTF-8" ?>
    <widget xmlns   = "http://www.w3.org/ns/widgets"
        xmlns:gap   = "http://phonegap.com/ns/1.0"
        id          = "com.phonegap.WYG_V2"
        version     = "1.0.0" >

    <!-- versionCode is optional and Android only -->

    <name>WYG_V2</name>

    <description>
        This application is very easy to use.
    </description>

    <author href="https://build.phonegap.com" email="i_am_mind2@hotmail.com">
        CHK 2RJP 
    </author>
</widget>

我已经学会了如何通过this

编写config.xml

1 个答案:

答案 0 :(得分:0)

@Chonkarm,
您提供的网址不是英文。我猜不出语言,所以我不能告诉你它是好还是不好。

要解决您的问题,您需要每个应用程序的唯一ID。在config.xml中,您需要修复此参数。

id = "com.phonegap.example"

在本节

<widget xmlns   = "http://www.w3.org/ns/widgets"
        xmlns:gap   = "http://phonegap.com/ns/1.0"
        id          = "com.phonegap.example"
        versionCode = "10" 
        version     = "1.0.0" >

您需要阅读的部分是Phonegap Build - The Basics

您可以从此博客帖子中获取更多详细信息 - Builing a release version for build.phonegap.com

最好的运气