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
1
vote
1 answer

More accurate identification of running applications on Mac OS

By using runningApplications of NSWorkspace, it is possible to get a list of running apps on Mac OS as NSRunningApplication objects, and from this get additional information like what application is in the foreground. It is possible to identify the…
Locksleyu
  • 5,192
  • 8
  • 52
  • 77
1
vote
1 answer

'This app could not be installed at this time' error Xcode

When I am trying to run my Flutter app, the build is succeeded, but when xcode tries to install this build automatically on the simulator, the following error occurs: The parent bundle has the same identifier (com.abc.def) as sub-bundle at …
Jan D.M.
  • 2,284
  • 2
  • 20
  • 32
1
vote
1 answer

Apple developer registering bundle ID

Today is my first day using my paid account (purchased it today), however, ive been building an app with a free provisional account for the past 2 months. I was using a totally different itunes account. Now, since i paid for a developer account, i…
1
vote
0 answers

Bundle.main.bundleIdentifier returns nil

Anybody can tell me when is the case where Bundle.main.bundleIdentifier will returns nil? if let domain = Bundle.main.bundleIdentifier { UserDefaults.standard.removePersistentDomain(forName: domain) } With the code above, there are "random…
SquareBox
  • 823
  • 1
  • 10
  • 22
1
vote
2 answers

Multiple instances of same app in iPhone

I want to keep three instances of a same app in my iPhone for three different environments: qa, uat, and prod. As per my knowledge, it can be achieved if I change the bundle identifier of each app. But if that is the case, I would have to create…
1
vote
1 answer

An App ID with Identifier 'com.app.appname' is not available. Please enter a different string

I'm getting this error when I try to register a new Bundle ID: "An App ID with Identifier 'com.app.myappname' is not available. Please enter a different string." I'm using Ionic/Cordova so I haven't been using much Xcode. I've seen other…
1
vote
1 answer

Uninstalling an iOS application using its bundle ID

Recently our provisioning profile expired, and we couldn't recover it for some other reasons (Accidentally removed the profile from the developer panel). The only option for us to distribute our application again was to re-sign the app with a newly…
1
vote
1 answer

Xcode keep replacing my existing bundle id with dash

I already have existing app which its bundle identifier start with digit. The app is transferred from third party to our account. Here is the bundle id SS from itunesconnect Xcode however, always replacing first digit of my bundle id with…
Hermanto
  • 11
  • 3
1
vote
1 answer

Bundle identifier does not have com. In my xcode project Why? How can I fix it?

Bundle identifier does not have com. in my XCode project. Why? How can I fix it?
1
vote
1 answer

Xcode 8 Automatically manage signing - bundle id - Ruin My Day

Let's say that my bundle id is "com.ILoveMistake.mybad" I use Unity and the project launch on my iphone : the bundle ID is : com.ILoveMistake.mybad I select signing "automatically manage signing". Everything works great and a good day was begining.…
Hnini
  • 11
  • 1
1
vote
1 answer

Bundle Identifer & all Certificates exist in Xcode, in Developer Account the Bundle Identifer is missing

i just created a new app. In Xcode everything like Team, Provisioning Profile and Signing Certificate is registered and i can build my app successfully. I enabled the automatically signing so Xcode should register the bundle identifier in my…
Chronisch
  • 105
  • 2
  • 9
1
vote
0 answers

What happens if I change an iOS App ID?

I'm wondering, what would happen if I change my App ID to another bundle ID. Here is a short example: Change from: com.company.myapp.company-intentextension To: com.company.myapp.intentextension Do I have to worry about my app in the app store in…
oga
  • 480
  • 1
  • 4
  • 13
1
vote
1 answer

Unity3D Package Conflicts with Package by the Same Name

I started a new project in Unity3D and imported the assets folder from the project for an app that I previously published to Google Play. I changed the bundle identifier, project name, generated a new keystore, and saved the apk with a new name.…
1
vote
1 answer

iOS Vendor ID changed

About a month ago, everything was working fine, I could install my app from TestFlight, from AppStore and Vendor ID was always the same. I have more applications installed from same vendor. But now, like a week ago, I installed TestFlight version,…
Flipper
  • 1,107
  • 1
  • 11
  • 32
1
vote
0 answers

Firebase not sending push notification to iOS app with bundle starting from anything other than com.xxx.yyy

I am working on updating my iOS app with BundleID of form in.xxx.yyy. As an update I am adding FCM for sending push notifications to my iOS app. When I try to send sandboxed test notifications from Firebase console by selecting my bundleID, the…