Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Entitlements_iOS11.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.springboard.launchapplications</key>
<true/>
<key>platform-application</key>
<true/>
<key>get-task-allow</key>
<true/>
<key>proc_info-allow</key>
<true/>
<key>task_for_pid-allow</key>
<true/>
<key>run-unsigned-code</key>
<true/>
<key>com.apple.system-task-ports</key>
<true/>
</dict>
</plist>
19 changes: 17 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
TARGET := iphone:clang:latest:5.0
ARCHS := armv7 armv7s arm64
DEBUG = 0

include theos/makefiles/common.mk
SDKVERSION = 9.2
export SYSROOT = $(THEOS)/sdks/iPhoneOS9.2.sdk

include $(THEOS)/makefiles/common.mk

TOOL_NAME = open
open_FILES = open.m
open_PRIVATE_FRAMEWORKS = SpringBoardServices
open_CODESIGN_FLAGS = -SEntitlements.plist

include $(THEOS_MAKE_PATH)/tool.mk
include $(THEOS)/makefiles/tool.mk


all::
# Resign it manually by jtool(http://www.newosxbook.com/tools/jtool.html)
./jtool --sign --ent ./Entitlements_iOS11.plist .theos/obj/arm64/open
mv out.bin .theos/obj/arm64/open
./jtool --sign --ent ./Entitlements.plist .theos/obj/armv7/open
mv out.bin .theos/obj/armv7/open
./jtool --sign --ent ./Entitlements.plist .theos/obj/armv7s/open
mv out.bin .theos/obj/armv7s/open
lipo -create .theos/obj/arm64/open .theos/obj/armv7/open .theos/obj/armv7s/open -output .theos/open
1 change: 0 additions & 1 deletion README

This file was deleted.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Opens apps from the commandline

------

2018 0713 Commited

Fix iOS 11 crashing (killed 9)

Binary file added jtool
Binary file not shown.