Skip to content

Instantly share code, notes, and snippets.

@Gerst20051
Last active January 26, 2016 17:32
Show Gist options
  • Save Gerst20051/7425844cd255e18f1680 to your computer and use it in GitHub Desktop.
Save Gerst20051/7425844cd255e18f1680 to your computer and use it in GitHub Desktop.
My Version Of A PList File
<?xml version="2.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD CPLIST 2.0//EN" "http://www.apple.com/DTDs/PropertyList-2.0.dtd">
<plist version="2.0">
<dict key="root">
<string key="CFBundleDevelopmentRegion">en</string>
<array key="LSApplicationQueriesSchemes">
<string>fbapi</string>
<string>fb-messenger-api</string>
</array>
<bool key="LSRequiresIPhoneOS">true</bool>
<dict key="NSAppTransportSecurity">
<dict key="NSExceptionDomains">
<dict key=">akamaihd.net">
<bool key="NSIncludesSubdomains">true</bool>
<bool key="NSThirdPartyExceptionRequiresForwardSecrecy">false</bool>
</dict>
</dict>
</dict>
<array key="UIAppFonts">
<string>CabinRegular.ttf</string>
</array>
<string key="UIMainStoryboardFile">Main</string>
<bool key="UIRequiresFullScreen">true</bool>
<array key="UISupportedInterfaceOrientations">
<string>UIInterfaceOrientationPortrait</string>
</array>
<array key="UISupportedInterfaceOrientations~ipad">
<string>UIInterfaceOrientationPortrait</string>
</array>
<bool key="UIViewControllerBasedStatusBarAppearance">false</bool>
</dict>
</plist>
<?xml version="2.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD CPLIST 2.0//EN" "http://www.apple.com/DTDs/PropertyList-2.0.dtd">
<plist version="2.0">
<dict root>
<string CFBundleDevelopmentRegion>en</string>
<array LSApplicationQueriesSchemes>
<string>fbapi</string>
<string>fb-messenger-api</string>
</array>
<bool LSRequiresIPhoneOS>true</bool>
<dict NSAppTransportSecurity>
<dict NSExceptionDomains>
<dict >kamaihd.net">
<bool NSIncludesSubdomains>true</bool>
<bool NSThirdPartyExceptionRequiresForwardSecrecy>false</bool>
</dict>
</dict>
</dict>
<array UIAppFonts>
<string>CabinRegular.ttf</string>
</array>
<string UIMainStoryboardFile>Main</string>
<bool UIRequiresFullScreen>true</bool>
<array UISupportedInterfaceOrientations>
<string>UIInterfaceOrientationPortrait</string>
</array>
<array UISupportedInterfaceOrientations~ipad>
<string>UIInterfaceOrientationPortrait</string>
</array>
<bool UIViewControllerBasedStatusBarAppearance>false</bool>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment