Tagged Questions
The cfbundleidentifier tag has no wiki summary.
10
votes
1answer
10k views
XCode bundle identifier formatting from {PRODUCT_NAME}
Assume I have an iPhone application whose Product Name is "My App" (with a space between words) in XCode build settings. In my info.plist, the Bundle identifier is specified as ...
7
votes
11answers
2k views
CFBundleVersion in the Info.plist Upload Error
"The binary you uploaded was invalid. The key CFBundleVersion in the Info.plist file must contain a higher version than that of the previously uploaded version."
I’m getting this error when I come to ...
6
votes
2answers
3k views
Naming convention for CFBundleSignature and CFBundleIdentifier
I am wondering how do I know what name I should give for my CFBundleSignature and CFBundleIdentifier. I believe these are supposed to be unique identifier so do I have to somehow get these names from ...
3
votes
1answer
2k views
How do I register a custom filetype in iOS
I am currently creating a app in which i want to let the user backup their files (plist + m4a). I zip the files and change the extension to a custom one (specifically for my app, say "*.MyBackup"). ...
2
votes
1answer
131 views
Does bundle id need to be case sensitive?
In provision profile I set my app id to com.mycompany.lowercaseappname, but in xcode4 the bundle identifier is auto config to use my ${PRODUCT_NAME} which is Capitalize (I want user to see it ...
2
votes
0answers
233 views
IOS Custom Icon Email Attachment
I registered my own custom CFBundleDocumentTypes filetype as described in this link: How do I register a custom filetype in iOS
Everything is working fine except when I send a mail via ...
1
vote
1answer
128 views
Bundle Identifier Problem
I’m having issues generating new bundle identifiers through the provisioning profile. When I click new New App Id and enter the required details it keeps generating the same bundle id.
This is what ...
0
votes
1answer
57 views
Choose the bundle identifier for an iOS and Mac app
Suppose that I have an app called A.
Bundle Identifiers must be unique across all Mac and iOS apps. This means that if I have the app A on the iOS App Store with the Bundle ID com.mycompany.a, I ...
0
votes
2answers
49 views
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 ...
0
votes
2answers
171 views
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 ...
0
votes
1answer
122 views
Cocoa/ObjC: get CFBundleIdentifier of current process
I have a case where [[NSBundle mainBundle] infoDictionary] does only contain this:
17.09.11 18:28:26,936 [0x0-0x5a98a93].com.valvesoftware.steam: 2011-09-17 18:28:26.935 steam[85587:707] infodict: {
...
0
votes
1answer
111 views
Open application with bundle identifier
Is it possible to open a application from our application with bundle identifier. Suppose I have two apps installed on device one with com.test.app1 and com.test.app2. Can I open app1 from my app2.
I ...
0
votes
0answers
127 views
Change bundle id and resign iPhone binary
The below procedure seems to work but I'm wondering whether this is a correct way of doing it(?)
Update bundle identifier in plist editor: open MyApp.app/Info.plist
codesign --force -s 'Developer' ...
0
votes
1answer
43 views
ArchiveInfo.plist has incorrect data
After building and archiving my application, I open up ArchiveInfo.plist that's in the folder with the app and it contains some invalid data. The Bundle Identifier is misspelled. I have looked ...
0
votes
1answer
294 views
Flickr Authentication Flow and iPhone
I'm attempting to hook my application into Flickr but having issues during the Authentication process.
I've followed:
...