我需要为我的苹果应用程序提供与配置文件相同的名称吗?
我是苹果应用程序开发的新手。我为我的教授工作,因此大学支付配置文件的费用。这里我有几个问题:
如果应用程序 ID 是“*.edu.university.lab.HelloWorld”,名称是“HelloWorld”,要在 iPad 上运行我的应用程序,我是否必须提供我的应用程序 ID?应用程序的名称(即 HelloWorld)与配置文件的名称完全相同?
如果上述情况属实,我必须在其他程序中构建并测试我的应用程序,然后才能在真正的 iPad 中运行它。如何通过将名称更改为 HellowWorld 来复制整个程序?
多谢!
朵拉
I am a newbie in apple app development. And I work for my professor so the university pays for the provisioning profile. Here I have several questions about it:
If the app ID is "*.edu.university.lab.HelloWorld", and its name is "HelloWorld", to run my app on the iPad, do I have to give my app exactly the same name (that is HelloWorld) as the provisioning file's name?
If the above is true, I have to build and test my app in other programs before running it in real iPad. How can I copy the entire program by just changing the name to HellowWorld?
Thanks a lot!
Dora
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您在设备上进行测试时,应用程序 ID 可以包含通配符,例如 edu.university.*。
App ID can include wild card, for example edu.university.* when you are testing on devices.
应用 ID 可以是您喜欢的任何内容,只要遵循
com.yourdomain.yourappname
即可。您的应用不需要与捆绑 ID 的yourappname
部分调用相同的名称。如果yourappname
设置为*
,那么它被称为通配符
。创建分发配置文件时,请包含捆绑包 ID。捆绑包 ID 必须与之匹配。其他一切都可以是你想要的。
An app id can be whatever you like, so long as it follows
com.yourdomain.yourappname
. Your app does not need to be called the same thing as theyourappname
portion of your bundle id. Ifyourappname
is set to*
, then it is said to be awildcard
.When you create a distribution profile, you include what the bundle id will be. The bundle ID must match that. Everything else can be what you want.