Last active
January 26, 2016 17:32
-
-
Save Gerst20051/7425844cd255e18f1680 to your computer and use it in GitHub Desktop.
My Version Of A PList File
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="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> |
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="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