Questions tagged [cfbundleidentifier]
74 questions
2
votes
1 answer
How to solve this (null): error: CFBundleIdentifier 'com.abcd.efg.*' contains illegal character '*'?
I have an App Id like this 'com.abcd.efg.*'. I have entered the correct app id in Bundle Identifier from .plist file of my project. When i build my project below error message is displaying.
(null): error: CFBundleIdentifier 'com.abcd.efg.*'…

Gopinath
- 5,392
- 21
- 64
- 97
1
vote
2 answers
Four part iOS bundle identifiers
Most examples of bundle identifiers have three parts. Are four part bundle identifiers valid in iOS? How about n-part? (n > 3)
com.companyname.divisionname.appname
[1st name].[2nd name]...[n-1th name].[nth name]

Danyal Aytekin
- 4,106
- 3
- 36
- 44
1
vote
2 answers
Same Bundle ID suffix on iPad and iPhone versions of App
This is a subtle question. I am planning to release an iOS app with two versions - one for iPhone and iPod Touch, and the other for iPad. The apps will be named, say, MyApp and MyApp HD. The app allows you to save files, and also to communicate with…

snibbe
- 2,715
- 1
- 27
- 34
1
vote
0 answers
How to upload application in MacOS Apple Store
I want to publish an Java application into Apple Store. The apple documentation recommends to use
$ xcrun altool --validate-app -f file -t platform -u username [-p password] [--output-format xml]
$ xcrun altool --upload-app -f file -t platform -u…

DbSchema
- 413
- 5
- 16
1
vote
2 answers
Load a dynamic shared library (DLL) on Mac in C++ using CFBundleCreate
How do I implement a function to load a dll(aka framework) on Mac OS using C++?
void LoadFramework(const char* frameworkPath)
{
//frameworkPath is the absolute path of the framework
}
Edit:
When I google searched for this problem, I mostly…

Rakesh Agarwal
- 3,009
- 9
- 33
- 40
1
vote
0 answers
Calling an application by the bundle signature using JXA (macOS)
When calling an application using JXA (JavaScript for automation), you can refer to the app by the bundle name or by the identifier, just like in AppleScript:
tell application "TextEdit" to activate
tell application id "com.apple.TextEdit" to…

retrography
- 6,302
- 3
- 22
- 32
1
vote
3 answers
How to fix "Print: Entry, ":CFBundleIdentifier", Does Not Exist" while running others project, what to do?
I'm trying to launch project from github and this problem occurs:
Error occurs after running via react-native run-ios
I tried to launch it on different simulators - didn't work
Reinstalling node_models - didn't work
react-native upgrade - didn't…

Daniil Kunin
- 143
- 1
- 12
1
vote
4 answers
"This app could not be installed at this time" CFBundleIdentifier error
I encountered the "This app could not be installed at this time" error. I have tried several methods such as reloading the simulator, deleting the app in the simulator and cleaning the Xcode project. However, it still has this error. I turned to the…

KevinLauOfficial
- 59
- 1
- 1
- 9
1
vote
1 answer
Flickr Authentication Flow and iPhone
I'm attempting to hook my application into Flickr but having issues during the Authentication process.
I've…

MarkPowell
- 16,482
- 7
- 61
- 77
1
vote
3 answers
Can't run app due to .plist file missing but its present
As per the error message I verified that .plist is available and i verified that the executable file name also present.
I tried with simulator to same problem.
I restarted Xcode and I cleaned my project but still same problem.
I didn't faced this…

Kishore Kumar
- 4,265
- 3
- 26
- 47
1
vote
1 answer
Codename one error sending release build to itunesconnect with iphone_new
When I send my ipa file to itunes connect using Application Loader after sending and downloading an IOS release build using the Target 'iphone_new' in my build.xml for release and debug I get an error message: "info.plist contains an invalid key…

Kyri33
- 599
- 2
- 15
1
vote
2 answers
Framework CFBundleIdentifier Collision
I've made a custom SDK using Cocoa Touch Framework (followed these instructions to make it https://kodmunki.wordpress.com/2015/03/04/cocoa-touch-frameworks-for-ios8-remix/) .
One app, that is using this SDK is already uploaded to app store and is…

Deivid Sarapuu
- 86
- 7
1
vote
0 answers
ITMS-90378 "CFBundleIdentifier Collision" WatchKit
ERROR ITMS-90378 "CFBundleIdentifier Collision. There is more than one bundle with the CFBundleIdentifier value 'com.appname.watchkit' under the iOS application 'appname.app'"
i have added five bundle identifier to app
one in main ios app in…

Bhadresh Sonani
- 90
- 1
- 11
1
vote
1 answer
How to check, where an application is located under OS X?
How to check the location of an application installed under OS X?
I tried it with the method LSFindApplicationForInfo and it works fine if you are searching for the bundle identifier.
But this way is not working if you have installed more than one…

3ef9g
- 781
- 2
- 9
- 19
1
vote
1 answer
Changing Bundle ID of iOS app before submitting binary
I would like to change the bundle ID of my app on itunes connect. I have not uploaded yet a binary, however I already have enabled game center (created 2 leaderboards and 2 achievements) and in-app purchasing (created 2 in-apps). I don't see…

andrewz
- 4,729
- 5
- 49
- 67