Change bundle identifier in Xcode when submitting my first app in IOS

后端 未结 12 1754
走了就别回头了
走了就别回头了 2020-12-07 10:53

I\'m trying to submit my first app in iOS. I have entered iOS Provisioning Portal and I am about to create an app ID.

Lets say that I name

相关标签:
12条回答
  • 2020-12-07 11:08

    Just change Product Name in your project's build settings. This will change the bundle identifier with no need to manually touch xcode configuration files.

    0 讨论(0)
  • 2020-12-07 11:10

    Just edit the Project name by single click on the Top of project navigator window, will work in this case. You need not to try any other thing. :)

    0 讨论(0)
  • 2020-12-07 11:11

    Xcode 7

    Select root node of your project -> In editor click on project name -> Select targets -> Identity -> Bundle Identifier

    0 讨论(0)
  • 2020-12-07 11:13

    A very simple solution to that is to open the file:

    YOURPROJECT.xcodeproj/project.pbxproj
    

    And find for this variable:

    PRODUCT_BUNDLE_IDENTIFIER
    

    You'll see something like that:

    PRODUCT_BUNDLE_IDENTIFIER = com.YOUR_APP_NAME.SOMETHING;
    

    So, the name on the right is your Bundle Identifier. In my case it works perfectly.

    0 讨论(0)
  • 2020-12-07 11:14

    This solve my problem.

    Just change the Bundle identifier from Build Setting.

     Navigate to Project >> Build Setting >> Product Bundle Identifier 
    
    0 讨论(0)
  • 2020-12-07 11:15

    If you are developing a cordova app, make sure to change the version and bundle identifier in the config.xml as well

    0 讨论(0)
提交回复
热议问题