Is anything "sensitive" stored in an iPhone Xcode project folder? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:52:36Z http://stackoverflow.com/feeds/question/960893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/960893/is-anything-sensitive-stored-in-an-iphone-xcode-project-folder 1 Is anything "sensitive" stored in an iPhone Xcode project folder? Teflon Ted 2009-06-07T00:26:25Z 2009-07-16T19:01:55Z <p>I want to open source one of my iPhone applications (that I've already published in the iTunes store) but I obviously don't want to expose anything "sensitive" like provisioning certificates and code-signing keys, etc. I'm guessing that stuff is merely <em>referenced</em> from the Xcode project folder (actually stored in my keychain elsewhere on disk) and if I were to share the entire project folder I'd be OK and nobody could hijack my identity with regards to the Apple iPhone Developer Program. Would I be correct?</p> http://stackoverflow.com/questions/960893/is-anything-sensitive-stored-in-an-iphone-xcode-project-folder/960921#960921 2 Answer by James Skidmore for Is anything "sensitive" stored in an iPhone Xcode project folder? James Skidmore 2009-06-07T00:45:16Z 2009-06-07T00:45:16Z <p>You should be fine in regards to your Apple iPhone Developer Program identity. If you're releasing a build instead of the X-Code project folder, the only thing you may want to check is the embeddable provision file (though I did glance at it quickly and it doesn't look like it contains any sensitive data).</p> http://stackoverflow.com/questions/960893/is-anything-sensitive-stored-in-an-iphone-xcode-project-folder/961218#961218 2 Answer by cdespinosa for Is anything "sensitive" stored in an iPhone Xcode project folder? cdespinosa 2009-06-07T04:39:33Z 2009-06-07T04:39:33Z <p>The provisioning profile itself is stored elsewhere on your hard disk and copied to the device. The code signing identity is stored in your Keychain. The only thing in the project file is the <em>name</em> of your identity certificate, not the certificate itself.</p> <p>For posting or publishing open source code (or even sharing in a repository with other developers) you should just set the Code Signing Identity to the wildcard "iPhone Developer".</p>