我创建了一个新的 Phonegap 3 项目。当我运行时:
phonegap 构建 ios
创建了一个名为“HelloWorld”的 XCode 项目。如何更改此项目名称?我应该手动完成还是在 PhoneGap 中集成了一个命令来在项目创建时正确设置所有内容?我试图避免尽可能多的手动步骤。
如果要更改现有项目:
这将创建一个具有正确名称的新项目。
解决方案是:
phonegap create path/to/my-app --id "com.example.app" --name "My App"
从主 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
或者
phonegap run ios
打开您的项目>>从顶部菜单“项目”>>“编辑活动目标”>>在“打包”下,您将看到“产品名称”。
编辑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
从PhoneGap
文档中:
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"
在 Xcode 中:选择项目 - 在选项卡信息 - 自定义 iOS 目标 - 捆绑显示名称 - 编辑名称