iOS web browser with a focus on security and privacy
at master 125 lines 3.4 kB view raw
1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3<plist version="1.0"> 4<dict> 5 <key>CFBundleDevelopmentRegion</key> 6 <string>en</string> 7 <key>CFBundleDisplayName</key> 8 <string>Endless</string> 9 <key>CFBundleExecutable</key> 10 <string>$(EXECUTABLE_NAME)</string> 11 <key>CFBundleIcons</key> 12 <dict> 13 <key>CFBundleAlternateIcons</key> 14 <dict> 15 <key>BlackIcon-60</key> 16 <dict> 17 <key>CFBundleIconFiles</key> 18 <array> 19 <string>BlackIcon-60</string> 20 </array> 21 <key>UIPrerenderedIcon</key> 22 <true/> 23 </dict> 24 </dict> 25 </dict> 26 <key>CFBundleIcons~ipad</key> 27 <dict> 28 <key>CFBundleAlternateIcons</key> 29 <dict> 30 <key>BlackIcon-60</key> 31 <dict> 32 <key>CFBundleIconFiles</key> 33 <array> 34 <string>BlackIcon-60</string> 35 </array> 36 <key>UIPrerenderedIcon</key> 37 <true/> 38 </dict> 39 </dict> 40 </dict> 41 <key>CFBundleIdentifier</key> 42 <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 43 <key>CFBundleInfoDictionaryVersion</key> 44 <string>6.0</string> 45 <key>CFBundleName</key> 46 <string>$(PRODUCT_NAME)</string> 47 <key>CFBundlePackageType</key> 48 <string>APPL</string> 49 <key>CFBundleShortVersionString</key> 50 <string>$(ENDLESS_VERSION_STRING)</string> 51 <key>CFBundleSignature</key> 52 <string>????</string> 53 <key>CFBundleURLTypes</key> 54 <array> 55 <dict> 56 <key>CFBundleURLName</key> 57 <string>org.jcs.endless</string> 58 <key>CFBundleURLSchemes</key> 59 <array> 60 <string>endlesshttp</string> 61 <string>endlesshttps</string> 62 </array> 63 </dict> 64 </array> 65 <key>CFBundleVersion</key> 66 <string>$(ENDLESS_BUILD_STRING)</string> 67 <key>ITSAppUsesNonExemptEncryption</key> 68 <false/> 69 <key>LSApplicationQueriesSchemes</key> 70 <array> 71 <string>onepassword</string> 72 <string>bitwarden</string> 73 <string>org-appextension-feature-password-management</string> 74 </array> 75 <key>LSRequiresIPhoneOS</key> 76 <true/> 77 <key>NSAppTransportSecurity</key> 78 <dict> 79 <key>NSAllowsArbitraryLoads</key> 80 <true/> 81 </dict> 82 <key>NSMainNibFile</key> 83 <string>Launch Screen</string> 84 <key>UIApplicationShortcutItems</key> 85 <array> 86 <dict> 87 <key>UIApplicationShortcutItemIconType</key> 88 <string>UIApplicationShortcutIconTypeAdd</string> 89 <key>UIApplicationShortcutItemTitle</key> 90 <string>New Tab</string> 91 <key>UIApplicationShortcutItemType</key> 92 <string>$(PRODUCT_BUNDLE_IDENTIFIER).OpenNewTab</string> 93 </dict> 94 <dict> 95 <key>UIApplicationShortcutItemIconType</key> 96 <string>UIApplicationShortcutIconTypeProhibit</string> 97 <key>UIApplicationShortcutItemSubtitle</key> 98 <string>Close tabs and clear data</string> 99 <key>UIApplicationShortcutItemTitle</key> 100 <string>Clear Data</string> 101 <key>UIApplicationShortcutItemType</key> 102 <string>$(PRODUCT_BUNDLE_IDENTIFIER).ClearData</string> 103 </dict> 104 </array> 105 <key>UIFileSharingEnabled</key> 106 <true/> 107 <key>UILaunchStoryboardName</key> 108 <string>Launch Screen</string> 109 <key>UIRequiredDeviceCapabilities</key> 110 <array> 111 <string>armv7</string> 112 </array> 113 <key>UIStatusBarHidden</key> 114 <true/> 115 <key>UISupportedInterfaceOrientations</key> 116 <array> 117 <string>UIInterfaceOrientationPortrait</string> 118 <string>UIInterfaceOrientationLandscapeLeft</string> 119 <string>UIInterfaceOrientationLandscapeRight</string> 120 <string>UIInterfaceOrientationPortraitUpsideDown</string> 121 </array> 122 <key>UIViewControllerBasedStatusBarAppearance</key> 123 <true/> 124</dict> 125</plist>