git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 86cf0c4d845d2d116dd53d435bafdcfbfb80a682
parent b63ddc6e3dec979c4f0c77d45ba60865b18e2e3c
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Fri, 12 Apr 2024 13:47:01 +0300

Sign the sideloaded iOS app to make sure TrollStore uses the correct entitlements

Diffstat:
MMakefile3++-
AiOS/sideload.entitlements13+++++++++++++
2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -684,9 +684,10 @@ endif ios: @$(MAKE) _ios -$(BIN)/SameBoy-iOS.ipa: ios +$(BIN)/SameBoy-iOS.ipa: ios iOS/sideload.entitlements $(MKDIR) -p $(OBJ)/Payload cp -rf $(BIN)/SameBoy-iOS.app $(OBJ)/Payload/SameBoy-iOS.app + codesign -fs - --entitlements iOS/sideload.entitlements $(OBJ)/Payload/SameBoy-iOS.app (cd $(OBJ) && zip -q $(abspath $@) -r Payload) rm -rf $(OBJ)/Payload diff --git a/iOS/sideload.entitlements b/iOS/sideload.entitlements @@ -0,0 +1,12 @@ +<?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>application-identifier</key> + <string>SAMEBOY.com.github.liji32.sameboy.ios</string> + <key>com.apple.developer.team-identifier</key> + <string>SAMEBOY</string> + <key>com.apple.private.security.container-required</key> + <string>com.github.liji32.sameboy.ios</string> +</dict> +</plist> +

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.