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
4
votes
1 answer

Xcode: How to have different Bundle Id for "Debug" and "Release"

I am using Schemes in Xcode. I cannot specify different Bundle IDs for the "Debug" and "Release" schemes, while I can do for any other scheme that I create. I need to manually edit the Bundle Id in order to install 2 different apps on my iOS (the…
user2078023
  • 1,137
  • 1
  • 10
  • 28
4
votes
2 answers

Unable to update release iOS app with dev build: "*AppName* is already installed"

I'm trying to test user data migration from a released app (installed from App Store) to new development build. But when I'm installing IPA on the device, I get an error: AppName is already installed. AppName has the same Bundle ID as AppName and…
4
votes
2 answers

Owning the domain used in my application bundle ID

When releasing an app on Google Play, it has to have a unique bundle id such as com.example.myapp Like explained here: Bundle ID in android But how important is it to own the domain that I use in my bundle ID? Is it even recommended? E.g., if I use…
Wu Wenjun
  • 107
  • 2
  • 11
4
votes
1 answer

Xcode: Archive Has Incorrect Bundle Id and Provisioning Profile During Validation

I have one Xcode project that has 3 different configurations spread across 6 schemes as follows: Debug Config1Debug Config2Debug Release Config1Release Config2Release Each Scheme: Has its own Display Name and Bundle Identifier. Has the proper…
4
votes
1 answer

How to get Package Name / Bundle Identifier of app in IONIC / Cordova (In JavaScript code)

I need to extract Package Name / Bundle Identifier of app in IONIC / Cordova app in my JavaScript code. I have tried using plugins like $ionicPlatform & $cordovaDevice until now with no help.
4
votes
2 answers

Setting up Urban Airship with multiple targets - same bundle ID possible?

We are rolling out an international project with complex server logic and two mobile clients, iOS and Android. For iOS are planning to have different targets in the same Xcode project for each country in order to be able to customize each countries…
Mundi
  • 79,884
  • 17
  • 117
  • 140
4
votes
5 answers

How to set the bundle identifier of a cocoapod

For a pod I have created, cocoapod set org.cocoapods as prefix for the bundle identifier of my pod: I would like to be able to set my own prefix but I did not find any option to do that in a podspec. Anyone knows if this option exists…
Sébastien
  • 327
  • 5
  • 15
4
votes
1 answer

App Store Submission tvOS Bundle Identifier

I am trying to upload a tvOS app as a target from my iOS app however I am not sure what the bundle identifier should be? Should it be the same as the iOS app or com.mywebsite.myapp.tvosapp or something different? Thanks
Tom Coomer
  • 6,227
  • 12
  • 45
  • 82
3
votes
4 answers

No suitable application records were found. Verify your bundle identifier ‘org.cocoapods.BigNumber’ is correct

App Store Connect wont let me upload my app. Seemingly no matter what I do, I get this error when uploading via Xcode directly to App Store Connect: "No suitable application records were found. Verify your bundle identifier…
3
votes
3 answers

Different bundle identifier for different schemes

I am building an iOS application and I want to set different bundle identifiers for different schemes in Xcode 10. Where do I find that setting?
MihaiBC
  • 472
  • 5
  • 15
3
votes
1 answer

React-native iOS build is failed

The react-native iOS build is failed with following error. GB-MAC-01s-MacBook-Pro:rrtest muruganandham.kuppan$ react-native run-ios Found Xcode project rrtest.xcodeproj Building using "xcodebuild -project rrtest.xcodeproj -configuration Debug…
Muruganandham K
  • 5,271
  • 5
  • 34
  • 62
3
votes
1 answer

How do I use Cocoa to get a URL of a bundle with a given ID, or vice versa?

If I have a bundle identifier as a String, how do I find out the URL of the bundle that it identifies? Conversely, if I have the URL of a bundle, how do I find out that bundle's identifier as a String? I would like to only use Foundation/Cocoa APIs…
Ky -
  • 30,724
  • 51
  • 192
  • 308
3
votes
1 answer

Get App Store link with bundle identifier only

On Google Play, you can get a link to your app with only the package id. Eg. https://play.google.com/store/apps/details?id=com.google.android.gm Is there a way to do the same for App Store, using only the bundle identifier? Eg.…
Avery235
  • 4,756
  • 12
  • 49
  • 83
3
votes
2 answers

ios - Handle keychain loss after changing to team id prefix

As I am developing extensions for my app, to share keychain I got bundle identifier changed to Team Id Prefix. Now I want to log out user first time as old keychain will not be accessible. Problem is I cant upgrade my app. I installed older version…
Durgaprasad
  • 1,910
  • 2
  • 25
  • 44
3
votes
2 answers

How to pass bundle id of extension as environment variable

I need to build an Xcode project within a Today Extension by 'xcodebuild'. The bundle is of the main target is com.myapp, while the bundle id of the extension is com.myapp.todayextension. I'd like to pass both the bundle id's as parameters of…