I want to learn iOS development first then buy a developer account. So I'm using a Jailbreak+AppSync+iOS 5.0.1 device for development.
Then, I want to add some lines below to Entitlements.plist but I can't find this file and of course I can't make it by myself.
<dict>
<key>com.apple.springboard.launchapplications</key>
<true/>
</dict>
From the official document, I found I can see Entitlements.plist in the shell and I see it.
codesign -d --entitlements -xxxx/Build/Products/Debug-iphoneos/MyApp.app
Then I think the Entitlements.plist file for this app must be somewhere. I just want to add some lines to it.
I also found some questions that said to enable Entitlements.plist, you should do it in Organizer/Provisioning Profiles. But that question is about iCloud. I don't need iCloud. So I want to ask, is there anyway to write to Entitlements.plist without a developer account?
[ADD]
If Xcode 4.2 or iOS 5 don't necessarily need a Entitlements.plist anymore. How can I add this entitlement (com.apple.springboard.launchapplications) to my application.
Thank you very much.