App ID limit reached without any information beforehand

I setup an App that I have been testing on my macOS and iOS in Xcode. Then I realized I have 6 more apps I need to start working on. I have plans to become a developer in the Apple program but I want to get further in my coding to move forward.

Apparently the UI Tests in my 6 Apps and those Apps took 10App ID limits from my account.

I have App I have App UI Test and then and again up to a total of 5 of those 6 apps. My main app is now locked out of development? I wasn't planning on working on the other apps until I got my big first app developed.

What can I do?! I am stuck. I can't work on my main app, nor can I work on the other apps. I'm not ready to at all.

Answered by DTS Engineer in 852334022

We’re talking about Xcode’s Personal Team feature here. The limits of that feature are documented on Developer > Support > Choosing a Membership.

You don’t have to wait for your App IDs to reset though. If you want to create a new project:

  1. Pick one of your existing test apps that you no longer care about.
  2. Delete it from your device.
  3. Create a new project using the same bundle ID.

It will reuse the previous project’s App ID.

This isn’t appropriate for ‘real’ apps, because the bundle ID uniquely identifies the app within both iOS and App Store Connect. But it’s fine for test apps. For example, the vast majority of my iOS test apps use the bundled ID com.example.apple-samplecode.xxsi, where xx is a placeholder, s stands for Swift (it’s o for Objective-C), and i stands for iOS (or m for Mac) [1].

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] I create a lot of test projects, so minimising the number of decisions I have to make, and keys I have to type, is surprisingly important.

Accepted Answer

That should be a weekly limit. You may also be able to delete app provisioning profiles from the device it is complaining about. You can also consider getting a paid account.

I am a stroke survivor... I don't have the cash to pay for any of this... lol. But thank you... Yeah, I am working on other thngs that I've been putting off while working on my main application.

We’re talking about Xcode’s Personal Team feature here. The limits of that feature are documented on Developer > Support > Choosing a Membership.

You don’t have to wait for your App IDs to reset though. If you want to create a new project:

  1. Pick one of your existing test apps that you no longer care about.
  2. Delete it from your device.
  3. Create a new project using the same bundle ID.

It will reuse the previous project’s App ID.

This isn’t appropriate for ‘real’ apps, because the bundle ID uniquely identifies the app within both iOS and App Store Connect. But it’s fine for test apps. For example, the vast majority of my iOS test apps use the bundled ID com.example.apple-samplecode.xxsi, where xx is a placeholder, s stands for Swift (it’s o for Objective-C), and i stands for iOS (or m for Mac) [1].

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] I create a lot of test projects, so minimising the number of decisions I have to make, and keys I have to type, is surprisingly important.

App ID limit reached without any information beforehand
 
 
Q