session-ios/SignalShareExtension/Info.plist

111 lines
3.1 KiB
Plaintext
Raw Normal View History

<?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>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
2017-11-30 18:50:48 +01:00
<string>Signal</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
2019-10-22 05:53:15 +02:00
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
2019-10-22 05:53:15 +02:00
<string>$(CURRENT_PROJECT_VERSION)</string>
2017-12-06 00:12:29 +01:00
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
2017-12-05 22:49:21 +01:00
<key>NSAppTransportSecurity</key>
2020-02-04 05:04:58 +01:00
<dict>
<key>NSExceptionDomains</key>
<dict>
2020-02-11 03:43:50 +01:00
<key>149.56.148.124</key>
2020-02-10 04:36:52 +01:00
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
2020-02-11 03:43:50 +01:00
<key>contentproxy.signal.org</key>
2020-02-04 05:04:58 +01:00
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
2020-02-11 03:43:50 +01:00
<key>file-dev.lokinet.org</key>
2020-02-04 05:04:58 +01:00
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
2020-04-03 00:22:42 +02:00
<key>public.loki.foundation</key>
2020-02-04 05:04:58 +01:00
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>storage.seed1.loki.network</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>storage.seed2.loki.network</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict>
2017-12-06 00:12:29 +01:00
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
2018-01-25 21:28:30 +01:00
<key>NSExtensionActivationRule</key>
<string>SUBQUERY (
2018-01-11 22:28:29 +01:00
extensionItems,
$extensionItem,
SUBQUERY (
$extensionItem.attachments,
$attachment,
2020-02-20 04:37:17 +01:00
ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &quot;public.data&quot;
|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO &quot;public.url&quot;
).@count &gt;= 1
2018-01-11 22:28:29 +01:00
).@count == 1
</string>
2017-12-06 00:12:29 +01:00
</dict>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.share-services</string>
</dict>
2017-12-05 22:49:21 +01:00
<key>UIAppFonts</key>
<array>
<string>dripicons-v2.ttf</string>
<string>ElegantIcons.ttf</string>
<string>fontawesome-webfont.ttf</string>
</array>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
2020-02-20 04:37:17 +01:00
<true/>
</dict>
</plist>