-
-
Save danielfttorres/deada23cc0fe2fd0748c to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# Put this in /hooks/after_prepare/ | |
PLIST=platforms/ios/*/*-Info.plist | |
cat << EOF | | |
Add :NSAppTransportSecurity dict | |
Add :NSAppTransportSecurity:NSAllowsArbitraryLoads bool YES | |
Add :NSAppTransportSecurity:NSExceptionDomains:facebook.com:NSIncludesSubdomains bool YES | |
Add :NSAppTransportSecurity:NSExceptionDomains:facebook.com:NSThirdPartyExceptionRequiresForwardSecrecy bool NO | |
Add :NSAppTransportSecurity:NSExceptionDomains:fbcdn.net:NSIncludesSubdomains bool YES | |
Add :NSAppTransportSecurity:NSExceptionDomains:fbcdn.net:NSThirdPartyExceptionRequiresForwardSecrecy bool NO | |
Add :NSAppTransportSecurity:NSExceptionDomains:akamaihd.net:NSIncludesSubdomains bool YES | |
Add :NSAppTransportSecurity:NSExceptionDomains:akamaihd.net:NSThirdPartyExceptionRequiresForwardSecrecy bool NO | |
Delete :LSApplicationQueriesSchemes | |
Add :LSApplicationQueriesSchemes array | |
Add :LSApplicationQueriesSchemes:0 string 'fbapi' | |
Add :LSApplicationQueriesSchemes:1 string 'fbapi20130214' | |
Add :LSApplicationQueriesSchemes:2 string 'fbapi20130410' | |
Add :LSApplicationQueriesSchemes:3 string 'fbapi20130702' | |
Add :LSApplicationQueriesSchemes:4 string 'fbapi20131010' | |
Add :LSApplicationQueriesSchemes:5 string 'fbapi20131219' | |
Add :LSApplicationQueriesSchemes:6 string 'fbapi20140410' | |
Add :LSApplicationQueriesSchemes:7 string 'fbapi20140116' | |
Add :LSApplicationQueriesSchemes:8 string 'fbapi20150313' | |
Add :LSApplicationQueriesSchemes:9 string 'fbapi20150629' | |
Add :LSApplicationQueriesSchemes:10 string 'fbauth' | |
Add :LSApplicationQueriesSchemes:11 string 'fbauth2' | |
EOF | |
while read line | |
do | |
/usr/libexec/PlistBuddy -c "$line" $PLIST | |
done | |
true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment