Bundle ID

RSS for tag

A bundle ID is a unique identifier for a single app.

Posts under Bundle ID tag

173 Posts

Post

Replies

Boosts

Views

Activity

Same BundleID for iOS & tvOS apps in 1 developer account. How to to get actual released version info for both platforms separately
I would like to check current released AppStore version for my iOS app and tvOS app. They have same bundleID. I can't divide it to this url request to tvOS ones and iOS ones, because of identical Bundle ID's. http://itunes.apple.com/br/lookup?bundleId=app.sameIdExample When I get response from url it shows released iOS version. I want to get info about released tvOS version. Any ideas how to divide url or use another two separate urls to get JSON info about tvOS. Please help :)
0
0
686
May ’22
Voxeet Cordova - Can't upload the iOS bundle to AppStore
Hello! I was able to add the plugin upgrading xcode version to 13. I test my app and everything is working but then i try to archive the .ipa and upload it to the appStore but I face with this error: CFBundleIdentifier Collision. There is more than one bundle with the CFBundleIdentifier value 'com.onevcat.Kingfisher' under the iOS application 'WorkoutMinister.app'. With error code STATE_ERROR.VALIDATION_ERROR.90685 for id c3d0e0ae-8bce-4e4f-a335-2244043d4a3d I look for information but it and I know that is caused by embed framework reference inside the xcframwork build but i dont know how to change this.
0
0
664
Apr ’22
Is it posible to reuse bundle id on the same account?
Here's a case: My app uses Private Apple Distribution Method and is available on Apple Business Manager. However, I want to make app publicly available on the App Store. Is there a way to do this without changing app's bundle id? I have some dependencies using the current bundle id so I would have to change licences for those dependencies, which I'm trying to avoid. One option I considered is to remove the app and create a new one with the same bundle id on the same account, basically to reuse the bundle id. Is this possible? If not, what are my options?
1
0
1.3k
Apr ’22
How can I transfer a bundle ID from Apple Developer Program to Apple Enterprise Program?
Hi, I submited an app to App Store Connect using an account from the Apple Developer Program (of my company), but now we choose an internal distribution. So, my company has joined me to his Apple Enterprise program account, and now I want to transfer the same app to this program. is that possible or do I need to create a new bundle ID? Thanks
1
1
1.4k
Mar ’22
Trouble with save data on updating after App Transfer
I am currently having a problem with most recent update of my iOS application SUPERSTAR PLEDIS. I recently did an App Transfer to successfully move the rights to this application from my old company to my new company. However, upon releasing an update to the app, iOS users were unable to load the save data stored on the device. While I have yet to pinpoint the cause, I suspect the problem lies in storage of PlayerPrefs (I am working on a Unity application, which stores PlayerPrefs in /Library/Preferences/[bundle identifier].plist). I have double checked my build and my bundle identifier has not been changed (either in Unity or in Xcode). Is it possible that as a result of the App Transfer or related activity (change of Team ID and App ID prefix as a result, new provisioning profile and so on) my app is in a seperately curated sandbox from the previous version and unable to access the previous save file .plist? If so, is there anyway to "bridge the gap" so to speak and maintain save file consistency in new app versions? I realize the problem may be Unity related or caused entirely by my error, but any help or advice in resolving this that could be provided would be greatly appreciated. (I had thought to check and see if two seperate .plist files existed in the library folder to see if my assumption was correct and the old save file was being ignored, but due to iOS' security features I have not found a way to see that information. Is there a method to do so?)
2
0
1.2k
Feb ’22
Cannot build app: Bundle identifier error
Every time, I try to compile my app on xcode I get this error: The bundle identifier could not be determined. Check your info.plst file. The thing is that I made sure to use the correct app id in the info.plst file and all my certificates and profiles are up to date. I'm not sure what went wrong. I have to tried to manually delete my provisioning profiles and then restart xcode, but that hasn't worked. Not sure what to do.
1
0
716
Feb ’22
Error archiving : Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier
is there a way to fix Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier, except equalize the bundle id both of them ? in my case i cannot archive my app with notification service extension that have to embeded into the main app. Because i want configuring for rich notification
1
0
1.1k
Feb ’22
AppClip is not included in the archive uploaded to App Store Connect
Our Appclip is not included in our build when we upload to App Store Connect the archive we exported from XCode. The problem may come from our bundle identifier : in XCode, in the “signing & capabilities” settings, we have 3 errors when choosing as our Appclip bundle identifier the same identifier as the app (companyName.AppNamepart1.AppNamepart2), followed by the .Clip suffix. Here are the errors we get : _Communication with Apple failed. App ID configuration error: This app ID does not include the parent app ID. To continue, register a new identifier with the parent app ID as the prefix. Provisioning profile "iOS Team Provisioning Profile: *" doesn't support the On Demand Install Capable capability. Provisioning profile "iOS Team Provisioning Profile: *" doesn't include the com.apple.developer.on-demand-install-capable and com.apple.developer.parent-application-identifiers entitlements._ We have also tried registering a new bundle identifier on the App Store Connect on this url : https://developer.apple.com/account/resources/identifiers/bundleId/add/ but we cannot seem to be able to type anything in the “Identifier” input field. Do you have any lead on how to solve our issue?
1
0
1.6k
Jan ’22
Publishing my app "lite" version along the main one - some questions
My app is on the App Store. Now I would like to publish a "lite" version of my app. Its name could be something like "MyApp lite", it has only a reduced set of features. I think it would be accepted on the reviewal process because it is not unusual that two similar apps are in the App Stores, one having just the main features and the other being complete. Let's say they are identified by com.myappdomain.app and com.myappdomain.app.lite 1-Is it possible to publish such a "lite" app along the main one (different pricing or business model)? 2-Can its name be like "MyApp lite" (or similar wording)? 3-Can they have the same app icon? 4-Can they be installed at the same time on a device? 5-The two apps are compatible with a special data type, importing, exporting, and launching with files with a special registered file extension. This is from the info.plist <key>CFBundleDocumentTypes</key> ... <key>CFBundleTypeName</key> <string>com.myappdomain.mydatatype</string> <key>NSUbiquitousDocumentUserActivityType</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string> ... <key>UTExportedTypeDeclarations</key> ... <key>UTImportedTypeDeclarations</key> ... <key>CFBundleDocumentTypes</key> ... <key>CFBundleTypeName</key> <string>com.myappdomain.mydatatype</string> <key>NSUbiquitousDocumentUserActivityType</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string> ... I changed the bundle identifier in certain places for the new project (the original code, stripped of many features) but I see that there is also $(PRODUCT_BUNDLE_IDENTIFIER).mydatatype for NSUbiquitousDocumentUserActivityType that changes for the two apps, while the other plist settings are the same. Is it right? Should the two apps have the same NSUbiquitousDocumentUserActivityType value instead? Thanks in advance
4
0
2.3k
Jan ’22
If I delete the App Group Does it affects live uses?
I recently changed my developer account from account A to account B. I have successfully transferred my applications. With transfer of applications my app group was not migrated. Question - Can I deleted the app group from account A and recreate it in account B with the exact same identifier. If means does it affects the live users. Which means does the live user can able to use our application without any data loss(Logout)
1
0
1.1k
Jan ’22
Delete Bundle ID Free Account Apple Developer
My problem is the following: I created an application in XCode and I logged in with an account that is not enrolled in the Apple Developer Program. And the BundleId was automatically registered in that account. So now that we have the new developer account (Enrolled) it no longer lets me register the same bundleID. Because it tells me an error "cannot be registered to your development team because it is not available. Change your bundle identifier to a unique string to try again. And look in forums that the only solution is: Login to Apple Developer with the account that registered that bundleId Go to certificates Revoke the certificate But it is a free account. I do not see the option "Certificates" Please help!
2
1
5.5k
Jan ’22
Invalid Code Signing Entitlements - com.apple.application-identifier
Our app uploads successfully, but then I get the following message in an email from App Store Connect about an Invalid Code Signing Entitlements: "ITMS-90286: Invalid Code Signing Entitlements - Your application bundle's signature contains code signing entitlements that are not supported on macOS. Specifically, value 'BFZC26JH2W.humansarehuman.blue2factor.macosbackground' for key 'com.apple.application-identifier' in 'Blue2Factor.app/Contents/Library/LoginItems/Blue2FactorBackground.app/Contents/MacOS/Blue2FactorBackground' is not supported. This value should be a string starting with your TEAMID, followed by a dot '.', followed by the bundle identifier ." The value for the key mentioned, BFZC26JH2W.humansarehuman.blue2factor.macosbackground, IS our TEAMID, followed by a dot, followed by the bundle identifier. The bundle is a target in our project, though it is not only target, and it is not the bundle ID that is identified as the BundleID on the App Store Connect - App Information page under the General Information heading. If anyone can point to what we're doing wrong, I would appreciated it. Thank you, Chris
1
2
1k
Jan ’22
How does TCC rely on the bundle ID esp. with multiple targets?
We distribute an macOS app bundle with a main executable, a helper executable, a nested app bundle and an XPCService. myApp.app └── Contents ├── _CodeSignature │ └── CodeResources ├── embedded.provisionprofile ├── Info.plist ├── MacOS │ ├── myHelperApp.app │ │ └── Contents... │ ├── mainExecutable │ └── helperExecutable ├── PkgInfo └── XPCServices └── myXPCService.xpc └── Contents... Our mainExecutable requires FullDiskAccess and the helperExecutable requires Accessibility Access. Since this a product for enterprise customers, the TCC permissions usually get granted via a PPPC profile. What would be a good bundle identifier naming scheme for such a structure? com.example.myApp for the main app bundle/executable and com.example.myApp.helperExecutable etc. for all additional targets? When creating the PPPC profile, do I only refer to the bundle identifier of the main bundle com.example.myApp? If so, does that mean that every executable in that bundle has these privileges? At least this is what the manual approach would suggest, where the user can drag an entire app bundle to the privacy settings. The helperExecutable gets copied into the bundle during the build process. But when it is run from its Xcode scheme, it is run from the build directory, outside the final bundle. This requires the helper binary to be extra granted Accessibility permissions, at least during development. Is there a better way? Thanks (Quinn)!
1
0
1.8k
Jan ’22
Licensing options for developing SDK framework
Hi Forum, we developing an iOS SDK (framework) that will be used by our customer apps. The SDk will be hosted and distributed using cocoapod. The framework intern will use another vendor SDK / Framework and the vendor is asking bundle id to generate the license key. But as we are developing SDK and not an app, we do not have bundle id to share. How generally the licensing should be arranged in this cases (when a SDK is depends on another). Thanks, SD
1
0
746
Dec ’21
Same BundleID for iOS & tvOS apps in 1 developer account. How to to get actual released version info for both platforms separately
I would like to check current released AppStore version for my iOS app and tvOS app. They have same bundleID. I can't divide it to this url request to tvOS ones and iOS ones, because of identical Bundle ID's. http://itunes.apple.com/br/lookup?bundleId=app.sameIdExample When I get response from url it shows released iOS version. I want to get info about released tvOS version. Any ideas how to divide url or use another two separate urls to get JSON info about tvOS. Please help :)
Replies
0
Boosts
0
Views
686
Activity
May ’22
Get bundle id's of projects in which my framework is embedded.
I have developed a framework and I want to get the bundle IDs of the projects which are using my framework. Does Apple allow it, and Is there any way get bundle IDs?
Replies
1
Boosts
0
Views
639
Activity
Apr ’22
Voxeet Cordova - Can't upload the iOS bundle to AppStore
Hello! I was able to add the plugin upgrading xcode version to 13. I test my app and everything is working but then i try to archive the .ipa and upload it to the appStore but I face with this error: CFBundleIdentifier Collision. There is more than one bundle with the CFBundleIdentifier value 'com.onevcat.Kingfisher' under the iOS application 'WorkoutMinister.app'. With error code STATE_ERROR.VALIDATION_ERROR.90685 for id c3d0e0ae-8bce-4e4f-a335-2244043d4a3d I look for information but it and I know that is caused by embed framework reference inside the xcframwork build but i dont know how to change this.
Replies
0
Boosts
0
Views
664
Activity
Apr ’22
WatchOS Home Screen bundle id
Hi, Currently I'm working on Apple Watch ui testing using XCTest and I need to interact with Apple Watch's Home screen in order to perform different actions with complications. As I know from my iOS experience, Home Screen can be by using bundle id "com.apple.springboard". I need something similar but for watchOS.
Replies
1
Boosts
0
Views
962
Activity
Apr ’22
Is it posible to reuse bundle id on the same account?
Here's a case: My app uses Private Apple Distribution Method and is available on Apple Business Manager. However, I want to make app publicly available on the App Store. Is there a way to do this without changing app's bundle id? I have some dependencies using the current bundle id so I would have to change licences for those dependencies, which I'm trying to avoid. One option I considered is to remove the app and create a new one with the same bundle id on the same account, basically to reuse the bundle id. Is this possible? If not, what are my options?
Replies
1
Boosts
0
Views
1.3k
Activity
Apr ’22
How can I transfer a bundle ID from Apple Developer Program to Apple Enterprise Program?
Hi, I submited an app to App Store Connect using an account from the Apple Developer Program (of my company), but now we choose an internal distribution. So, my company has joined me to his Apple Enterprise program account, and now I want to transfer the same app to this program. is that possible or do I need to create a new bundle ID? Thanks
Replies
1
Boosts
1
Views
1.4k
Activity
Mar ’22
Failed to register bundle identifier
When trying to submit a new app for ios and getting a build, the bundle identifier for the transporter gives an error: "Failed to register bundle identifier" . Identifier already exists but no longer allows build.
Replies
0
Boosts
0
Views
1.5k
Activity
Mar ’22
Trouble with save data on updating after App Transfer
I am currently having a problem with most recent update of my iOS application SUPERSTAR PLEDIS. I recently did an App Transfer to successfully move the rights to this application from my old company to my new company. However, upon releasing an update to the app, iOS users were unable to load the save data stored on the device. While I have yet to pinpoint the cause, I suspect the problem lies in storage of PlayerPrefs (I am working on a Unity application, which stores PlayerPrefs in /Library/Preferences/[bundle identifier].plist). I have double checked my build and my bundle identifier has not been changed (either in Unity or in Xcode). Is it possible that as a result of the App Transfer or related activity (change of Team ID and App ID prefix as a result, new provisioning profile and so on) my app is in a seperately curated sandbox from the previous version and unable to access the previous save file .plist? If so, is there anyway to "bridge the gap" so to speak and maintain save file consistency in new app versions? I realize the problem may be Unity related or caused entirely by my error, but any help or advice in resolving this that could be provided would be greatly appreciated. (I had thought to check and see if two seperate .plist files existed in the library folder to see if my assumption was correct and the old save file was being ignored, but due to iOS' security features I have not found a way to see that information. Is there a method to do so?)
Replies
2
Boosts
0
Views
1.2k
Activity
Feb ’22
Cannot build app: Bundle identifier error
Every time, I try to compile my app on xcode I get this error: The bundle identifier could not be determined. Check your info.plst file. The thing is that I made sure to use the correct app id in the info.plst file and all my certificates and profiles are up to date. I'm not sure what went wrong. I have to tried to manually delete my provisioning profiles and then restart xcode, but that hasn't worked. Not sure what to do.
Replies
1
Boosts
0
Views
716
Activity
Feb ’22
Error archiving : Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier
is there a way to fix Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier, except equalize the bundle id both of them ? in my case i cannot archive my app with notification service extension that have to embeded into the main app. Because i want configuring for rich notification
Replies
1
Boosts
0
Views
1.1k
Activity
Feb ’22
BundleID doesnt show up in new app after i have deleted the old app
i have deleted the app from the app store but i want to recreate the app with the same bundle ID its not showing up on the list of available bundle IDs under new app
Replies
0
Boosts
0
Views
474
Activity
Feb ’22
AppClip is not included in the archive uploaded to App Store Connect
Our Appclip is not included in our build when we upload to App Store Connect the archive we exported from XCode. The problem may come from our bundle identifier : in XCode, in the “signing & capabilities” settings, we have 3 errors when choosing as our Appclip bundle identifier the same identifier as the app (companyName.AppNamepart1.AppNamepart2), followed by the .Clip suffix. Here are the errors we get : _Communication with Apple failed. App ID configuration error: This app ID does not include the parent app ID. To continue, register a new identifier with the parent app ID as the prefix. Provisioning profile "iOS Team Provisioning Profile: *" doesn't support the On Demand Install Capable capability. Provisioning profile "iOS Team Provisioning Profile: *" doesn't include the com.apple.developer.on-demand-install-capable and com.apple.developer.parent-application-identifiers entitlements._ We have also tried registering a new bundle identifier on the App Store Connect on this url : https://developer.apple.com/account/resources/identifiers/bundleId/add/ but we cannot seem to be able to type anything in the “Identifier” input field. Do you have any lead on how to solve our issue?
Replies
1
Boosts
0
Views
1.6k
Activity
Jan ’22
Not able to create the App Bundle ID
Hello, I am trying to create an app in the app store connect. This requires a Bundle Id. The identifier field is disabled, when we try to create the bundle id. Can anyone help on what can be the issue. We tried reaching to support but haven't got any response. Thanks in advance Cheers
Replies
0
Boosts
0
Views
503
Activity
Jan ’22
Publishing my app "lite" version along the main one - some questions
My app is on the App Store. Now I would like to publish a "lite" version of my app. Its name could be something like "MyApp lite", it has only a reduced set of features. I think it would be accepted on the reviewal process because it is not unusual that two similar apps are in the App Stores, one having just the main features and the other being complete. Let's say they are identified by com.myappdomain.app and com.myappdomain.app.lite 1-Is it possible to publish such a "lite" app along the main one (different pricing or business model)? 2-Can its name be like "MyApp lite" (or similar wording)? 3-Can they have the same app icon? 4-Can they be installed at the same time on a device? 5-The two apps are compatible with a special data type, importing, exporting, and launching with files with a special registered file extension. This is from the info.plist <key>CFBundleDocumentTypes</key> ... <key>CFBundleTypeName</key> <string>com.myappdomain.mydatatype</string> <key>NSUbiquitousDocumentUserActivityType</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string> ... <key>UTExportedTypeDeclarations</key> ... <key>UTImportedTypeDeclarations</key> ... <key>CFBundleDocumentTypes</key> ... <key>CFBundleTypeName</key> <string>com.myappdomain.mydatatype</string> <key>NSUbiquitousDocumentUserActivityType</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string> ... I changed the bundle identifier in certain places for the new project (the original code, stripped of many features) but I see that there is also $(PRODUCT_BUNDLE_IDENTIFIER).mydatatype for NSUbiquitousDocumentUserActivityType that changes for the two apps, while the other plist settings are the same. Is it right? Should the two apps have the same NSUbiquitousDocumentUserActivityType value instead? Thanks in advance
Replies
4
Boosts
0
Views
2.3k
Activity
Jan ’22
If I delete the App Group Does it affects live uses?
I recently changed my developer account from account A to account B. I have successfully transferred my applications. With transfer of applications my app group was not migrated. Question - Can I deleted the app group from account A and recreate it in account B with the exact same identifier. If means does it affects the live users. Which means does the live user can able to use our application without any data loss(Logout)
Replies
1
Boosts
0
Views
1.1k
Activity
Jan ’22
Delete Bundle ID Free Account Apple Developer
My problem is the following: I created an application in XCode and I logged in with an account that is not enrolled in the Apple Developer Program. And the BundleId was automatically registered in that account. So now that we have the new developer account (Enrolled) it no longer lets me register the same bundleID. Because it tells me an error "cannot be registered to your development team because it is not available. Change your bundle identifier to a unique string to try again. And look in forums that the only solution is: Login to Apple Developer with the account that registered that bundleId Go to certificates Revoke the certificate But it is a free account. I do not see the option "Certificates" Please help!
Replies
2
Boosts
1
Views
5.5k
Activity
Jan ’22
Invalid Code Signing Entitlements - com.apple.application-identifier
Our app uploads successfully, but then I get the following message in an email from App Store Connect about an Invalid Code Signing Entitlements: "ITMS-90286: Invalid Code Signing Entitlements - Your application bundle's signature contains code signing entitlements that are not supported on macOS. Specifically, value 'BFZC26JH2W.humansarehuman.blue2factor.macosbackground' for key 'com.apple.application-identifier' in 'Blue2Factor.app/Contents/Library/LoginItems/Blue2FactorBackground.app/Contents/MacOS/Blue2FactorBackground' is not supported. This value should be a string starting with your TEAMID, followed by a dot '.', followed by the bundle identifier ." The value for the key mentioned, BFZC26JH2W.humansarehuman.blue2factor.macosbackground, IS our TEAMID, followed by a dot, followed by the bundle identifier. The bundle is a target in our project, though it is not only target, and it is not the bundle ID that is identified as the BundleID on the App Store Connect - App Information page under the General Information heading. If anyone can point to what we're doing wrong, I would appreciated it. Thank you, Chris
Replies
1
Boosts
2
Views
1k
Activity
Jan ’22
How does TCC rely on the bundle ID esp. with multiple targets?
We distribute an macOS app bundle with a main executable, a helper executable, a nested app bundle and an XPCService. myApp.app └── Contents ├── _CodeSignature │ └── CodeResources ├── embedded.provisionprofile ├── Info.plist ├── MacOS │ ├── myHelperApp.app │ │ └── Contents... │ ├── mainExecutable │ └── helperExecutable ├── PkgInfo └── XPCServices └── myXPCService.xpc └── Contents... Our mainExecutable requires FullDiskAccess and the helperExecutable requires Accessibility Access. Since this a product for enterprise customers, the TCC permissions usually get granted via a PPPC profile. What would be a good bundle identifier naming scheme for such a structure? com.example.myApp for the main app bundle/executable and com.example.myApp.helperExecutable etc. for all additional targets? When creating the PPPC profile, do I only refer to the bundle identifier of the main bundle com.example.myApp? If so, does that mean that every executable in that bundle has these privileges? At least this is what the manual approach would suggest, where the user can drag an entire app bundle to the privacy settings. The helperExecutable gets copied into the bundle during the build process. But when it is run from its Xcode scheme, it is run from the build directory, outside the final bundle. This requires the helper binary to be extra granted Accessibility permissions, at least during development. Is there a better way? Thanks (Quinn)!
Replies
1
Boosts
0
Views
1.8k
Activity
Jan ’22
Licensing options for developing SDK framework
Hi Forum, we developing an iOS SDK (framework) that will be used by our customer apps. The SDk will be hosted and distributed using cocoapod. The framework intern will use another vendor SDK / Framework and the vendor is asking bundle id to generate the license key. But as we are developing SDK and not an app, we do not have bundle id to share. How generally the licensing should be arranged in this cases (when a SDK is depends on another). Thanks, SD
Replies
1
Boosts
0
Views
746
Activity
Dec ’21
simulate app
Hello, I can't simulate my app because my Cpf bundle app is incorect someone know what is the problem about my cpf.
Replies
4
Boosts
0
Views
805
Activity
Nov ’21