mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
AltDaemon allows AltStore to install and refresh apps without a computer on jailbroken devices. AltDaemon has the necessary entitlements to perform the same actions AltServer normally does over WiFi, and uses the same AltServer request logic to handle local requests.
23 lines
673 B
XML
23 lines
673 B
XML
<?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>6XVY5G3U44.com.rileytestut.AltDaemon</string>
|
|
<key>get-task-allow</key>
|
|
<true/>
|
|
<key>platform-application</key>
|
|
<true/>
|
|
<key>com.apple.authkit.client.private</key>
|
|
<true/>
|
|
<key>com.apple.private.mobileinstall.allowedSPI</key>
|
|
<array>
|
|
<string>Install</string>
|
|
<string>Uninstall</string>
|
|
<string>InstallForLaunchServices</string>
|
|
<string>UninstallForLaunchServices</string>
|
|
<string>InstallLocalProvisioned</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|