2021-02-02 14:33:23 +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">
|
|
|
|
<dict>
|
|
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
|
|
<string>$(DEVELOPMENT_LANGUAGE)</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>FileBin</string>
|
|
|
|
<key>CFBundlePackageType</key>
|
|
|
|
<string>APPL</string>
|
|
|
|
<key>CFBundleShortVersionString</key>
|
|
|
|
<string>$(FLUTTER_BUILD_NAME)</string>
|
|
|
|
<key>CFBundleSignature</key>
|
|
|
|
<string>????</string>
|
|
|
|
<key>CFBundleVersion</key>
|
|
|
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
|
|
|
<key>LSRequiresIPhoneOS</key>
|
|
|
|
<true/>
|
|
|
|
<key>UILaunchStoryboardName</key>
|
|
|
|
<string>LaunchScreen</string>
|
|
|
|
<key>UIMainStoryboardFile</key>
|
|
|
|
<string>Main</string>
|
|
|
|
<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/>
|
|
|
|
<key>UIBackgroundModes</key>
|
|
|
|
<array>
|
|
|
|
<string>fetch</string>
|
|
|
|
<string>remote-notification</string>
|
|
|
|
</array>
|
|
|
|
<key>NSAppleMusicUsageDescription</key>
|
|
|
|
<string>Allow to select music files and upload them via the app</string>
|
2021-02-03 00:57:42 +00:00
|
|
|
<key>CFBundleURLTypes</key>
|
|
|
|
<array>
|
|
|
|
<dict>
|
|
|
|
<key>CFBundleTypeRole</key>
|
|
|
|
<string>Editor</string>
|
|
|
|
<key>CFBundleURLSchemes</key>
|
|
|
|
<array>
|
|
|
|
<string>ShareMedia</string>
|
|
|
|
</array>
|
|
|
|
</dict>
|
|
|
|
<dict/>
|
|
|
|
</array>
|
2023-01-16 00:43:37 +00:00
|
|
|
// TODO follow steps on create share extension (https://pub.dev/packages/flutter_sharing_intent)
|
2021-02-02 14:33:23 +00:00
|
|
|
<key>NSPhotoLibraryUsageDescription</key>
|
|
|
|
<string>Allow to select photos and upload them via the app</string>
|
2022-01-21 15:45:39 +00:00
|
|
|
<key>LSApplicationQueriesSchemes</key>
|
|
|
|
<array>
|
|
|
|
<string>https</string>
|
|
|
|
<string>http</string>
|
|
|
|
</array>
|
2021-02-02 14:33:23 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|