From 9c0eddfd91527970c6722e76ef2469e7113228cd Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 21 Mar 2011 23:53:24 -0700 Subject: [PATCH] Steal more entitlements from MobileSafari: I want Nitro. --- entitlements.xml | 35 +++++++++++++++++++++++++++++++++++ launch.xml | 9 --------- makefile | 4 ++-- 3 files changed, 37 insertions(+), 11 deletions(-) create mode 100644 entitlements.xml delete mode 100644 launch.xml diff --git a/entitlements.xml b/entitlements.xml new file mode 100644 index 00000000..9c8d1d24 --- /dev/null +++ b/entitlements.xml @@ -0,0 +1,35 @@ + + + + com.apple.coreaudio.allow-amr-decode + + + com.apple.coremedia.allow-protected-content-playback + + + com.apple.managedconfiguration.profiled-access + + + com.apple.springboard.opensensitiveurl + + + dynamic-codesigning + + + com.apple.springboard.launchapplications + + + com.apple.springboard.opensensitiveurl + + + keychain-access-groups + + com.apple.cfnetwork + com.apple.identities + com.apple.mobilesafari + + + platform-application + + + diff --git a/launch.xml b/launch.xml deleted file mode 100644 index 80d48068..00000000 --- a/launch.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - com.apple.springboard.launchapplications - - com.apple.springboard.opensensitiveurl - - - diff --git a/makefile b/makefile index abc07de6..be9ae5f7 100644 --- a/makefile +++ b/makefile @@ -118,14 +118,14 @@ sysroot: sysroot.sh @echo 1>&2 @exit 1 -MobileCydia: sysroot $(object) +MobileCydia: sysroot $(object) entitlements.xml @echo "[link] $(object:Objects/%=%)" @$(cycc) $(filter %.o,$^) $(flags) $(link) $(uikit) @cp -a $@ bins/$@-$(version) @echo "[strp] $@" @strip -no_uuid $@ @echo "[sign] $@" - @ldid -T0 -Slaunch.xml $@ || { rm -f $@ && false; } + @ldid -T0 -Sentitlements.xml $@ || { rm -f $@ && false; } CydiaAppliance: CydiaAppliance.mm $(cycc) $(filter %.mm,$^) $(flags) -bundle $(link) $(backrow) -- 2.47.2