Can't edit Bundle Identifier - ios

Apple reject my app because I choose appid with In-app purchase but I don't use it. So I created wildcart id with com.domain.*. But ı can't use it. Please help. Thank you.
I download my provisioning profile. And trying to drop over the project in XCode. But the Bundle identifier doesn't change.
My app id is com.domain.*
In Xcode bundle identifier is com.domain.appname.
What should I do?

In the info tab of your Target, change your bundle identifier. The wildcard simply means that you can use any value, not just an asterisk. For example, com.myappcompany.ourfirstapp is a valid identifier for the com.myappcompany.* identifier.

Please go to info tab in Target of your application and change bundle identifier from there.

Related

React-native - Failed to create provisioning profile

I would like to run app on my physical device, but i have these errors.
No profiles for 'org.reactjs.native.example.weekdays' were found
The app ID "org.reactjs.native.example.weekdays" cannot be registered to your development team.
Something wrong with bundles?!(org.reactjs.native.example.APPNAME) I'm a beginner.
Iphone 7 virtual device is working.
screenshot
What should i do?
Many thanks!
This is the solution to my issue that's similar to this one:
Change your bundle identifier to a unique string to try again.
Your bundle identifier is already in use by other developers I guess, so just change your bundle identifier in the Identify tab right above your Signing tab to another one:
For example:
Bundle Identifier: org.react.native.example.MyAwesomeWeekdaysIn2099
You have to create an app provisioning profile, log in to Xcode, set bundle ID and set the team. It's all documented here.

No matching provisioning profiles found error when uploading to app store

I was trying to upload new version of my app but I encounter an error like:
I am using automatically manage signing:
Can anyone help? Thank you
I figured out, it was due to the product bundle identifier under the build setting was different from the one in info.plist
We need to check product bundle identifier in below things
1.in Plist set your app bundle identifier
Bundle identifier String com.domainName.projectName
2.Product Bundle Identifier in Project and Target
You need to set app bundle identifier in Build Settings of Project
Then you need to set app bundle identifier in Build Settings of Target

can I use an old bundle identifier in Xcode?

Good morning, I had an old bundle identifier com.a.b, but now I create a new project with the same bundle identifier com.a.b, Xcode tells me I should change it, how can I use com.a.b in this new project?
You can not. A bundle identifier is a unique ID in the Apple Developer portal.
If I define one in my account, it will be blocked for you as well.
Even if I delete mine, it will not be released.

Xcode Provisioning profile apple id not matching bundle identifier

I'm getting an error
"No matching provisioning profiles"
where it says the AppleID has to be the same as the bundle identifier.
The problem is that it IS the same, but when I create my project, it adds "Tests" to the end of the bundle identifier.
For example, AppID is "com.company.app". I create a project with the Product Name "app" and the Organization Identifier "com.company". The Bundle Identifier is then set to "com.company.app".
When I try to run it on my device it says that the AppID is ""com.company.app" but the bundle identifier is "com.company.appTests"
make sure your code signing identity is correct for the appTests target.
I usually get that when code signing is set to the wrong profile in Tests target. Try to set it to correct profile or try Dont Code Sign
I solved the problem by restarting my phone after uninstalling the app. You can give it a try.
Go to Build section of xcode, search for bundle identifier and change that to what your app id is and error will be gone

Bundle identifier changed after changing application name

a little stuck here,
I changed the name of my application, the bit that will show under the icon on a device, bundle identifier right ? I want to submit an update to my app, but now my bundle identifier is different, and there is no code signing identity profile to select to validate/distribute. How do I go about submitting my app if the identifiers are different?
Really confused
any help would be much appreciated
thanks
By default your bundle identifier is com.yourcompany.${PRODUCT_NAME:rfc1034identifier} in your Info.plist (Bundle identifier key), if you change PRODUCT_NAME you change also your bundle identifier. You can specify other bundle identifier in Info.plist which you can find in Project Navigator. To change the name of application in Spring Board (under icon) you have to change Bundle display name in Info.plist. For more details about Info.plist read apple documentation:
https://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Introduction/Introduction.html

Resources