Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/PojavLauncher_iOS
Path: blob/main/entitlements.trollstore.xml
589 views
1
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
2
<plist version="1.0">
3
<dict>
4
<key>application-identifier</key>
5
<string>net.kdt.pojavlauncher</string>
6
<key>get-task-allow</key>
7
<true/>
8
9
<key>com.apple.developer.kernel.extended-virtual-addressing</key>
10
<true/>
11
<key>com.apple.developer.kernel.increased-memory-limit</key>
12
<true/>
13
14
<!-- iOS may treat PojavLauncher as system app (if previously installed before under Debian package), which requires these entitlement -->
15
<key>com.apple.private.mobileinstall.upgrade-enabled</key>
16
<true/>
17
18
<!-- Give ability to change Jetsam task limit by itself -->
19
<key>com.apple.private.memorystatus</key>
20
<true/>
21
22
<!-- Disable sandbox so that PojavLauncher can enable JIT by itself -->
23
<key>com.apple.private.security.no-sandbox</key>
24
<true/>
25
26
<!-- The following entitlements are required if sandbox is disabled -->
27
<key>com.apple.private.security.storage.AppDataContainers</key>
28
<true/>
29
<key>com.apple.private.security.storage.MobileDocuments</key>
30
<true/>
31
<key>com.apple.security.iokit-user-client-class</key>
32
<array>
33
<string>IOSurfaceRootUserClient</string>
34
<string>AGXDeviceUserClient</string>
35
<string>AGXSharedUserClient</string>
36
<string>AGXCommandQueue</string>
37
<string>AGXDevice</string>
38
</array>
39
<key>com.apple.security.exception.mach-lookup.global-name</key>
40
<array>
41
<string>com.apple.nsurlsessiond</string>
42
<string>com.apple.nsurlsessiond.NSURLSessionProxyService</string>
43
<string>com.apple.nsurlstorage-cache</string>
44
</array>
45
<key>platform-application</key>
46
<true/>
47
</dict>
48
</plist>
49
50