Creating a bundle - What's going wrong? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:00:08Z http://stackoverflow.com/feeds/question/926766 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/926766/creating-a-bundle-whats-going-wrong 0 Creating a bundle - What's going wrong? joeylange 2009-05-29T15:58:13Z 2009-05-29T18:14:05Z <p>Hello everyone, I've got a relatively simple one here. I'm making bundles to live inside the Resources folder of my application (and possibly in the Application Support folder). These bundles will contain template information for the data the application handles. I've constructed a bundle, with extension "booksprintstyle", and the directory structure is up to spec. I have an Info.plist all set and I think I've filled in all the values I need to. Do I need to change something in my App to have these folders-with-extensions recognized as bundle files, or am I missing something in my bundle structure? I noticed that some bundles have a file called PkgInfo; is that important?</p> <p>Below is the Info.plist from my bundle.</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt; &lt;plist version="1.0"&gt; &lt;dict&gt; &lt;key&gt;CFBundleDevelopmentRegion&lt;/key&gt; &lt;string&gt;English&lt;/string&gt; &lt;key&gt;CFBundleGetInfoString&lt;/key&gt; &lt;string&gt;1.0, Copyright © 2009 Joey Lange&lt;/string&gt; &lt;key&gt;CFBundleIdentifier&lt;/key&gt; &lt;string&gt;net.atherial.books.exporter.printingpress.printstyle&lt;/string&gt; &lt;key&gt;CFBundleInfoDictionaryVersion&lt;/key&gt; &lt;string&gt;6.0&lt;/string&gt; &lt;key&gt;CFBundleName&lt;/key&gt; &lt;string&gt;Books Print Style - Generic&lt;/string&gt; &lt;key&gt;CFBundlePackageType&lt;/key&gt; &lt;string&gt;BNDL&lt;/string&gt; &lt;key&gt;CFBundleShortVersionString&lt;/key&gt; &lt;string&gt;1.0&lt;/string&gt; &lt;key&gt;CFBundleSignature&lt;/key&gt; &lt;string&gt;????&lt;/string&gt; &lt;key&gt;CFBundleDisplayName&lt;/key&gt; &lt;string&gt;Books Print Style - Generic&lt;/string&gt; &lt;key&gt;NSHumanReadableCopyright&lt;/key&gt; &lt;string&gt;Copyright © 2009 Joey Lange&lt;/string&gt; &lt;key&gt;CFBundleVersion&lt;/key&gt; &lt;string&gt;1.0&lt;/string&gt; &lt;/dict&gt; &lt;/plist&gt; </code></pre> http://stackoverflow.com/questions/926766/creating-a-bundle-whats-going-wrong/927387#927387 3 Answer by Peter Hosey for Creating a bundle - What's going wrong? Peter Hosey 2009-05-29T18:14:05Z 2009-05-29T18:14:05Z <blockquote> <p>Do I need to change something in my App to have these folders-with-extensions recognized as bundle files…</p> </blockquote> <p>Yes. Export a UTI declaration in your app's Info.plist for the type of these bundles. You'll declare the UTI as conforming to <code>com.apple.package</code>. See <a href="http://developer.apple.com/documentation/Carbon/Conceptual/understanding%5Futis/" rel="nofollow">Understanding Uniform Type Identifiers</a> for more.</p> <blockquote> <p>Below is the Info.plist from my bundle.</p> </blockquote> <p>That isn't relevant. The necessary declaration goes in your <em>application bundle</em>, not your document/plug-in bundles.</p> <blockquote> <p>I noticed that some bundles have a file called PkgInfo; is that important?</p> </blockquote> <p><a href="http://developer.apple.com/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/ConfigApplications.html#//apple%5Fref/doc/uid/20002094-98415" rel="nofollow">No.</a></p>