I have some problem. I want that my app use next instruction:
int SBSLaunchApplicationWithIdentifier(CFStringRef displayIdentifier, Boolean suspended);
- I add SpringboardServices.framework in my project
- I add URL Schemes for my app
But I can't add entitlement "com.apple.springboard.launchapplications". I did next: 1. Created the file entitlement.xml with
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "apple.com/DTDs/PropertyList-1.0.dtd">;
<plist version="1.0">
<dict>
<key>com.apple.springboard.launchapplications</key>
<true/>
</dict>
</plist>
- Paste entitlement.xml in
Developer/Xcode/DerivedData/MyApp-efjwoxgwdyixnfassijmwtptxvlj/Build/Products/Debug-iphoneos/
- Paste ldid in
Developer/Xcode/DerivedData/MyApp-efjwoxgwdyixnfassijmwtptxvlj/Build/Products/Debug-iphoneos/
Run command in Terminal: ./ldid -Sentitlement.xml AppName.app/AppName
But after this ldid didn't finish and require enter something(didn't write what I must enter only empty row). After that I can exit from ldid process only by pressing ctrl+z
Please, help me