- Corona SDK Mobile Game Development:Beginner's Guide
- Michelle M. Fernandez
- 398字
- 2021-08-06 19:59:42
Time for action – creating an App ID
Now that you have added a device to the portal, you will need to create an App ID. An App ID has a unique 10-character Bundle Seed ID prefix generated by Apple and a Bundle Identifier suffix that is created by the Team Admin in the Provisioning Portal. An App ID could look similar to the following example: 7R456G1254.com.companyname.YourApplication
. To create a new App ID follow these steps:
- Click on the New App ID button in the App ID section of the portal.
- Fill out the Description field with the name of your application.
- You are already assigned a Bundle Seed ID (also known as Team ID).
- In the Bundle Identifier (App ID Suffix) field, specify a unique identifier for your app. It is up to you as to how you want to identify your app, but it is recommended that you use the reverse-domain style string, that is
com.domainname.appname
.Note
You can create a wildcard character in the Bundle Identifier that you can share among a suite of applications using the same Keychain access. To do this, simply create a single App ID with an asterisk (*) at the end. You would place this in the field for the Bundle Identifier either by itself or at the end of your string:
com.domainname.*.
More information on this topic can be found in the App IDs section of the iOS Provisioning Portal: https://developer.apple.com/ios/manage/bundles/howto.action.
What just happened?
All UDIDs are unique on every device and we can locate them in Xcode and iTunes. When we added a device in the iOS Provisioning Portal we took the UDID, which consists of 40 hex characters and made sure we created a device name so we can identify what we're using for development.
We now have an App ID for applications we want to install on a device. An App ID is a unique identifier that iOS uses to allow your application to connect to the Apple Push Notification service, share keychain data between applications, and communicate with external hardware accessories that you wish to pair your iOS application with.
- FPGA從入門到精通(實戰篇)
- Learning AngularJS Animations
- 電腦軟硬件維修大全(實例精華版)
- 電腦常見問題與故障排除
- 計算機應用與維護基礎教程
- The Applied AI and Natural Language Processing Workshop
- 硬件產品經理成長手記(全彩)
- 分布式系統與一致性
- 微軟互聯網信息服務(IIS)最佳實踐 (微軟技術開發者叢書)
- STM32嵌入式技術應用開發全案例實踐
- Java Deep Learning Cookbook
- Spring Cloud實戰
- 筆記本電腦芯片級維修從入門到精通(圖解版)
- 觸摸屏應用技術從入門到精通
- USB應用分析精粹:從設備硬件、固件到主機端程序設計