119 lines
3.6 KiB
Plaintext
119 lines
3.6 KiB
Plaintext
<?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>
|
|
<!-- App Info -->
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Investment Tracker</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>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>LSRequiresIPhoneOS</key>
|
|
<true/>
|
|
|
|
<!-- Supported Orientations -->
|
|
<key>UIRequiredDeviceCapabilities</key>
|
|
<array>
|
|
<string>armv7</string>
|
|
</array>
|
|
<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>
|
|
|
|
<!-- Launch Screen -->
|
|
<key>UILaunchScreen</key>
|
|
<dict/>
|
|
|
|
<!-- Scene Configuration -->
|
|
<key>UIApplicationSceneManifest</key>
|
|
<dict>
|
|
<key>UIApplicationSupportsMultipleScenes</key>
|
|
<true/>
|
|
</dict>
|
|
|
|
<!-- AdMob App ID - REPLACE WITH YOUR REAL APP ID FOR PRODUCTION -->
|
|
<key>GADApplicationIdentifier</key>
|
|
<string>ca-app-pub-3940256099942544~1458002511</string>
|
|
|
|
<!-- AdMob Delay App Measurement -->
|
|
<key>GADDelayAppMeasurementInit</key>
|
|
<true/>
|
|
|
|
<!-- App Tracking Transparency -->
|
|
<key>NSUserTrackingUsageDescription</key>
|
|
<string>This app uses tracking to provide personalized ads and improve your experience. Your data is not sold to third parties.</string>
|
|
|
|
<!-- iCloud -->
|
|
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
|
|
<true/>
|
|
|
|
<!-- Background Modes -->
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>fetch</string>
|
|
<string>remote-notification</string>
|
|
</array>
|
|
|
|
<!-- Privacy Descriptions -->
|
|
<key>NSCalendarsUsageDescription</key>
|
|
<string>Used to set investment update reminders.</string>
|
|
|
|
<!-- URL Schemes for Deep Linking -->
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>investmenttracker</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
|
|
<!-- Supports iPad Multitasking -->
|
|
<key>UISupportsDocumentBrowser</key>
|
|
<false/>
|
|
|
|
<!-- App Transport Security -->
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<false/>
|
|
<key>NSAllowsArbitraryLoadsForMedia</key>
|
|
<false/>
|
|
<key>NSAllowsArbitraryLoadsInWebContent</key>
|
|
<false/>
|
|
</dict>
|
|
|
|
<!-- Status Bar Style -->
|
|
<key>UIStatusBarStyle</key>
|
|
<string>UIStatusBarStyleDefault</string>
|
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|