Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the "App Id" that the Apple developer connection site is asking me for?

Tags:

ios

I just signed up to be an iPhone Developer. What is the "App Id"? Is it my company name? Is it just my application name? Apple isn't very clear on this.

Thanks.

like image 274
JP Richardson Avatar asked Feb 17 '09 03:02

JP Richardson


People also ask

How do I find my Apple App developer ID?

Visiting Apple's Developer WebsiteOpen a browser and visit Apple's developer website. Click Account and sign in with the Apple ID that's linked to your developer account. On the left, select Certificates, IDs & Profiles. From the menu on the left, choose App IDs and look for the App ID Xcode created for us.

What is the app ID?

An app ID is a unique ID number assigned to your apps when they're added to AdMob. The app ID is used to identify your apps. An ad unit ID is a unique ID number assigned to each of your ad units when they're created in AdMob. The ad unit ID is added to your app's code and used to identify ad requests from the ad unit.

What is an Apple Developer team ID?

The Apple Developer Team ID will be sent to you by Apple when your organization is approved to receive the development kit. You can direct any issues or questions about Apply Pay or the developer application process to the Apple Support Team.

Is Apple Developer ID same as Apple ID?

You can create as many Apple IDs and developer accounts as you want. The developer id and the Apple Id can be the same which I think is what most people would want - as long it is personal and not related to any company or organisation.


1 Answers

I don't think Alex's answer is quite right.

com.myname.MyCoolApplication is the "Bundle ID search string", or "Bundle identifier", depending on which Apple documentation you consult.

Here are some Apple developer resources:

  • Technical Q&A QA1713: When should I use a wildcard App ID?

To get the full "App ID", you want the Team ID (generated by Apple) plus your Bundle Identifier (created by the developer). E.g., from Q&A QA1713,

Example App ID: ABCDE12345.com.foocompany.appname

  • ABCDE12345 is the Bundle Seed ID (generated by Apple)
  • com.foocompany.appname is the App ID's Bundle Identifier and needs to be the same as your app’s Bundle Identifier
like image 148
Tim Arnold Avatar answered Sep 30 '22 19:09

Tim Arnold