Questions tagged [bundle-identifier]

A bundle identifier lets iOS and OS X recognise any updates to your app.

A bundle identifier lets iOS and OS X recognise any updates to your app. Your bundle ID must be registered with Apple and be unique to your app. Bundle IDs are app-type specific (either iOS or OS X). The same bundle ID cannot be used for both iOS and OS X apps.

252 questions
345
votes
37 answers

App installation failed due to application-identifier entitlement

I am unable to install a watchOS 2 WatchKit app due to an application-identifier entitlement. This happened after turning on App Groups in the Capabilities tab. Full error: App installation failed This application's application-identifier…
Ric Santos
  • 15,419
  • 6
  • 50
  • 75
140
votes
3 answers

Obtain bundle identifier programmatically in Swift?

How can I get the bundle ID in Swift? Objective-C version: NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
User
  • 23,729
  • 38
  • 124
  • 207
84
votes
41 answers

Install claimed to have succeeded, but application could not be found on device

Xcode gave me this message: Could not locate installed application Install claimed to have succeeded, but application could not be found on device. bundleId = (null) I just started using pods. How do I fix this?
LucasKarlsson
  • 1,021
  • 1
  • 10
  • 16
64
votes
5 answers

WatchKit Extension bundle identifiers

I am trying to build my app but it failed. I am shown the message below. error: WatchKit Extension doesn't contain any WatchKit apps whose bundle identifiers match "com.domain.appname.watchkitapp". Verify that the value of WKAppBundleIdentifier in…
Tom Coomer
  • 6,227
  • 12
  • 45
  • 82
59
votes
6 answers

How to get bundle id in flutter

I used the below method to get the app name and packageName but I need Bundle id for iPhone users. I want to share an app link. I did it in android but on iPhone, I need bundle id. Future _initPackageInfo() async { final PackageInfo…
Vithani Chandresh
  • 781
  • 1
  • 6
  • 9
55
votes
8 answers

iOS extensions with multiple targets

In iOS 8, when we create an app extension, we have to decide which target it is attached to. The extension will have the same bundle ID's prefix as the target. Is there any way to change the target afterward? If my project contains 2 (or more)…
Enzo Tran
  • 5,750
  • 6
  • 31
  • 36
50
votes
6 answers

Xcode 7: changing product bundle identifier

I'm setting up Jenkins to automate the build process. In particular, for my needs, I'd like to be able to set different bundle identifiers. I'm using the Xcode Jenkins plugin to set the bundle identifier: The problem is that this will change the…
Luca Torella
  • 7,974
  • 4
  • 38
  • 48
47
votes
5 answers

iOS8 extension needs own provisioning profile?

I am starting an iOS 8 extension but I can't run it on my device. The error when trying to run it is: No matching provisioning profiles found The provisioning profile specified in your build settings (“ExtensionName”) has an AppID of…
31
votes
4 answers

what is correct format of bundle identifier in iOS?

I have four bundle identifier com.company.appname com.appname appname com.company-name.app-name Please help me to find out correct bundle identifier, Please tell me which is correct.
Krutarth Patel
  • 3,407
  • 6
  • 27
  • 54
28
votes
15 answers

"An App ID with bundle identifier X is not available. Please enter a different string" (Xcode 7.3)

After updating to the latest build of Xcode 7.3 (7D175), every time I try to Export for adhoc distribution I get the above error. Everything was working fine up until the update. The bundle ID is definitely my own, registered to this application.…
Warblr
  • 1,188
  • 1
  • 13
  • 27
24
votes
8 answers

Xcode trying to match frameworks bundle ID when uploading iOS app to App Store

After 4 months developing my first iOS app, it's time to submit it to the App Store. I created the app in iTunes Connect, filled in all the details, set up the correct Bundle ID in both Connect and Xcode. However, I've struggled the last 3 days…
Alex
  • 424
  • 4
  • 10
23
votes
3 answers

Changing bundle ID for Firebase

Early on in this project I made the error of not having the prefix com in the bundle identifier. Now I am ready to test flight and I have an invalid bundle identifier. Currently, my bundle identifier is mycompany.myProject but I want it to be…
21
votes
2 answers

Remove App ID with free Apple Developer Account

Apple recently introduced the Free Provisioning in iOS9 & Xcode 7. I was using it and XCode registered my bundle ID automatically as an App ID, now I want to remove the App ID to use it with another account but I can't find the way to do it.
Marc
  • 287
  • 2
  • 7
21
votes
11 answers

How to get bundle id of iOS app - either using .ipa file or app installed on iPhone

Currently I have .ipa file and same app can be installed through test flight. I don’t have the app source code. I tried extracting the files from .ipa file using Archive Utility but there was no plist file. I am not sure how do I get the bundle id…
NRM
  • 271
  • 2
  • 3
  • 6
15
votes
2 answers

How to completely remove bundle id in iOS development?

How can I reuse the bundle ID I have created for the app ID? I even delete the associated app ID but the bundle ID still unavailable.Does it to say bundle ID couldn't be removed completely once created?
plrthink
  • 311
  • 1
  • 3
  • 13
1
2 3
16 17