ente/ios/Runner/Info.plist

84 lines
2.5 KiB
Plaintext
Raw Normal View History

2020-03-24 19:59:36 +00:00
<?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">
2021-01-13 19:50:16 +00:00
<dict>
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>com.transistorsoft.fetch</string>
</array>
2021-10-07 09:53:54 +00:00
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
2021-01-13 19:50:16 +00:00
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>ente</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
2020-11-22 18:49:15 +00:00
<dict>
2021-01-13 19:50:16 +00:00
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>io.ente.frame</string>
<key>CFBundleURLSchemes</key>
<array>
<string>ente</string>
</array>
2020-11-22 18:49:15 +00:00
</dict>
2021-01-13 19:50:16 +00:00
</array>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
2020-08-21 23:27:29 +00:00
</dict>
2021-03-21 09:54:51 +00:00
<key>NSFaceIDUsageDescription</key>
<string>Please allow ente to lock itself with FaceID or TouchID</string>
2021-10-07 09:53:54 +00:00
<key>NSPhotoLibraryUsageDescription</key>
2021-11-11 11:03:32 +00:00
<string>Please allow access to your photos so that ente can encrypt and back them up.</string>
2021-01-13 19:50:16 +00:00
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
2021-10-27 20:08:20 +00:00
<string>processing</string>
2021-10-07 09:53:54 +00:00
<string>remote-notification</string>
2021-01-13 19:50:16 +00:00
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
2021-10-07 09:53:54 +00:00
<key>UIStatusBarHidden</key>
<true/>
2021-01-13 19:50:16 +00:00
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
2022-05-20 13:32:11 +00:00
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
2021-01-13 19:50:16 +00:00
</dict>
2021-10-07 09:53:54 +00:00
</plist>