我创建了一个新的Phonegap 3项目。我跑的时候:
phonegap build ios
创建名为“HelloWorld”的XCode项目。如何更改此项目名称?我应该手动执行还是在PhoneGap中集成了一个命令来设置项目创建的所有内容?我试图避免尽可能多的手动步骤。
答案 0 :(得分:9)
如果您想更改现有项目:
这将创建一个名称正确的新项目。
答案 1 :(得分:7)
解决方案是:
phonegap创建路径/到/我的应用程序--id“com.example.app”--name“我的应用程序”
答案 2 :(得分:6)
从主www目录
更改config.xml <name>Here is the Name you want to change </name>
<description>
here is description of your application
</description>
<author email="youremail@example.com" href="http://yoursite.com">
My team
</author>
现在使用CLI重建应用
phonegap build ios
phonegap install ios
OR
phonegap run ios
答案 3 :(得分:3)
打开您的项目&gt;&gt;从顶部菜单“项目”&gt;&gt; “编辑活跃目标 “&gt;&gt;在”打包“下,您会看到”产品名称“。
答案 4 :(得分:2)
修改www/config.xml
:
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "your.app.id"
version = "1.0.0">
<name>Here is the Name you want to change </name>
<description>
here is description of your application
</description>
<author email="youremail@example.com" href="http://yoursite.com">
My team
</author>
更新和重建:
phonegap platform update ios
phonegap run ios
答案 5 :(得分:0)
来自PhoneGap
documentation:
Launch Terminal.app
Drag the copied bin folder to the Terminal.app icon in your Dock, it should launch a new Terminal window
Type in ./create <project_folder_path> <package_name> <project_name> then press "Enter"
答案 6 :(得分:0)
在Xcode中:选择项目 - 在选项卡信息下 - 自定义iOS目标 - 包显示名称 - 编辑名称