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

后端 未结 12 1768
走了就别回头了
走了就别回头了 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:24

    I know that its late but it might be helpful for people who need to change the Bundle Identifier of the app. In the finder go to the project folder:

    the project file --> Right click on your project file '*.xcodeproj' 
    

    enter image description here

    --> choose 'Show Package Contents' 
    --> Double click to open 'project.pbxproj' file 
    

    enter image description here

    --> find 'productName = NAME_YOU_WANT_TO_CHANGE' in the 
        '/* Begin PBXNativeTarget section */'
    

    The ${PRODUCT_NAME:rfc1034identifier} variable will be replaced with the name you have entered and new Bundle Identifier will be updated to what you need it to be.

提交回复
热议问题