Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apple Developer app portal can longer generate new Bundle Seed ID

Tags:

ios

The new interface in iOS developer portal no longer has the Generate New button for your app ID. In its place is a "Use Team ID", which will result in the same seed ID being used. Anyone has any idea why the change and what you should do to use a new bundle seed ID? Randomly make up some?

like image 534
Boon Avatar asked Aug 31 '11 17:08

Boon


People also ask

How do I distribute my Mac software with developer id?

To distribute your Mac software with Developer ID, you'll need to be a member of the Apple Developer Program or Apple Developer Enterprise Program, obtain a Developer ID certificate, and submit your app to be notarized by Apple. You’ll also need to create a Developer ID provisioning profile for apps using advanced capabilities such as CloudKit.

What are the advantages of an Apple App for developers?

Applications can also take advantage of advanced capabilities such as CloudKit and push notifications. To distribute your Mac software with Developer ID, you'll need to be a member of the Apple Developer Program or Apple Developer Enterprise Program, obtain a Developer ID certificate, and submit your app to be notarized by Apple.

How to create a certificate for iTunes distribution?

You must get off automaticaly SignUp, and then go to iTunes connect page about certificate. Then set project with the Develop provisioning code and Distribution provisioning code that is set and choose.


1 Answers

Generating new Seed IDs isn't possible anymore.

See: http://developer.apple.com/library/ios/#documentation/General/Conceptual/ApplicationDevelopmentOverview/ConfigureYourProject/ConfigureYourProject.html#//apple_ref/doc/uid/TP40011186-CH6-SW8

(...) An app ID is a string containing two parts, a bundle seed ID and a bundle ID search string, with a period (.) separating the two parts. Each part of an app ID has different and important uses for your app.

The bundle seed ID is a unique 10-character string generated by Apple. The bundle seed ID is what associates an app ID with a specific team. Apps that share the same bundle seed ID can also share keychain data, such as user names and passwords. Each development team is assigned a specific seed ID, known as the team ID. You should almost always use the team ID in any new apps you create; if you are doing Mac OS X development, using the team ID is your only option for the bundle seed ID, and it is provided automatically by the tools. # Note: If you have been already been developing apps for iOS, you may have previously created bundle seed IDs for apps you have already distributed. The ability to create new seed IDs has been removed from the tools, but you may use a previously created bundle seed ID instead of using your team ID. Do this only if you need the new app to share an existing app’s keychain data. Otherwise, use the team ID. (...)

like image 70
Alexander Avatar answered Oct 21 '22 22:10

Alexander