Created
November 9, 2019 10:08
-
-
Save imlutr/d1958a984f6ed7a47a76ed0c0706f780 to your computer and use it in GitHub Desktop.
Info.plist.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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>en</string> | |
| <key>CFBundleDisplayName</key> | |
| <string>${app.name}</string> | |
| <key>CFBundleExecutable</key> | |
| <string>${app.executable}</string> | |
| <key>CFBundleIdentifier</key> | |
| <string>${app.id}</string> | |
| <key>CFBundleInfoDictionaryVersion</key> | |
| <string>6.0</string> | |
| <key>CFBundleName</key> | |
| <string>${app.name}</string> | |
| <key>CFBundlePackageType</key> | |
| <string>APPL</string> | |
| <key>CFBundleShortVersionString</key> | |
| <string>${app.version}</string> | |
| <key>CFBundleSignature</key> | |
| <string>????</string> | |
| <key>CFBundleVersion</key> | |
| <string>${app.build}</string> | |
| <key>LSRequiresIPhoneOS</key> | |
| <true /> | |
| <key>UIViewControllerBasedStatusBarAppearance</key> | |
| <false /> | |
| <key>UIStatusBarHidden</key> | |
| <true /> | |
| <key>UIDeviceFamily</key> | |
| <array> | |
| <integer>1</integer> | |
| <integer>2</integer> | |
| </array> | |
| <key>UIRequiredDeviceCapabilities</key> | |
| <array> | |
| <string>armv7</string> | |
| <string>opengles-2</string> | |
| </array> | |
| <key>UISupportedInterfaceOrientations</key> | |
| <array> | |
| <string>UIInterfaceOrientationPortrait</string> | |
| <string>UIInterfaceOrientationPortraitUpsideDown</string> | |
| <string>UIInterfaceOrientationLandscapeLeft</string> | |
| <string>UIInterfaceOrientationLandscapeRight</string> | |
| </array> | |
| <!-- Required by AdColony --> | |
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSAllowsArbitraryLoads</key> | |
| <true /> | |
| </dict> | |
| <key>LSApplicationQueriesSchemes</key> | |
| <array> | |
| <string>fb</string> | |
| <string>instagram</string> | |
| <string>tumblr</string> | |
| <string>twitter</string> | |
| </array> | |
| <key>NSCalendarsUsageDescription</key> | |
| <string>Adding events</string> | |
| <key>NSPhotoLibraryUsageDescription</key> | |
| <string>Taking selfies</string> | |
| <key>NSCameraUsageDescription</key> | |
| <string>Taking selfies</string> | |
| <key>NSMotionUsageDescription</key> | |
| <string>Interactive ad controls</string> | |
| <!-- Required by AdMob --> | |
| <key>GADApplicationIdentifier</key> | |
| <string>ca-app-pub-xxxxxxxxxxxxxxxx~xxxxxxxxx</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment