7

Upon updating to Xcode 9 and in the "launching" phase of compilation on the simulator I get the error:

Failed to create IXPlaceholder for app bundle ID

Screenshot

Emphasis placed on this issue only occurs trying to launch the simulator, as working with my actual iPhone 6s launches without any issues .

Attempts:

Ensured info.plist "Bundle Identifier" is correct. it is "$(PRODUCT_BUNDLE_IDENTIFIER)"

Checked to see if typing the bundle identifier manually would work, but it did not.

Project Cleaned

Deleted Derived Data

Xcode relaunched

Computer Restarted

Xcode betas uninstalled

Xcode Uninstalled and Reinstalled

Provisioning Profile Expires in 11 months

Automatically Manage Signing is unchecked then checked again

Paid Developer for 2 years now and have never had this issue before. Searched online for a solution with no luck and notice only a couple others have had this issue with no clear resolution.

What direction should I take to get this issue resolved. I don't see anything wrong with the provisioning files / certificates, but I could be wrong if someone could guide me in the right direction.

Thank you

Jayprakash Dubey
  • 35,723
  • 18
  • 170
  • 177
lifewithelliott
  • 1,012
  • 2
  • 16
  • 35
  • I have yet to find any documentation for this error on developer.apple.com. Anybody with a possible suggestion to try? – lifewithelliott Nov 02 '17 at 16:41
  • 1
    Please file a bug report at https://bugreport.apple.com and include the output of `xcrun simctl diagnose` taken right after the failure happens. You can also try the Xcode 9.1 beta, it is possible this is an issue that was fixed. – russbishop Nov 09 '17 at 20:20

7 Answers7

6

I had same problem, this solve it

In you Info.plist:

Bundle_display_name : Dictionary

set to String value not dictionary

Bundle_display_name : String

i hope this help you

Erwanito
  • 77
  • 1
3

enter image description here enter image description here

These steps helped me to fix this problem. I found this solution in this article

Taras
  • 1,485
  • 1
  • 16
  • 31
0

The only solution I have come across to continue being able to test your application on the simulator is to download the Xcode 10.3.1 simulators and select those to test your app on.

Best of luck to those who come across this bug!

lifewithelliott
  • 1,012
  • 2
  • 16
  • 35
0

I think i found solution for this. It works for my case. I did two things:

First(i think this is what really helps) :

  • in targets -> general-> Display name i set proper "App name" (i got i grayed before like seted placeholder)

    I tried to set ${PRODUCT_NAME} but i got issues with that (but i think you should try this too)

General Display Name

  • the in proper info.plist. In bundle name set the same proper "App name".

Same here.I tried to set ${PRODUCT_NAME} but i got issues with that (but i think you should try this too)

Info.plist Bundle Name

Second(but i'm pretty sure that was a coincidence) :

I have other project that doesn't have this issue and works fine on all ios versions and simulators.

  • In this project(that one which works fine) i set Bundle Identifier from project that doesn't works, but like i said im pretty sure that was only a coincidence
0

Setting Display Name should fix this. Also making sure your identifier doesn't have funny characters (e.g. -)

Targets > General > Display Name

-1

in my case, after upgraded system, it is fixed automatically

-1

Reinstall Xcode.

  1. Copy Xcode.xip from download Directory into Application Directory.
  2. Install it.
  3. Open your project and run.
franiis
  • 1,378
  • 1
  • 18
  • 33