-
Notifications
You must be signed in to change notification settings - Fork 936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only Secure links load into WebView #214
Comments
@jrmarkham Faced the same issue. Try setting up <key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>mydomain.ru</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict> |
That did it-- thanks. |
if android how to do |
it shouldn't be an issue on Android |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It seems that only secure urls will load. The good news is that just adding an "s" to http does the trick.
I tested this on scaffold and launch
ie:
http://mega.markhamenterprises.com (won't load)
https://mega.markhamenterprises.com (will load)
The text was updated successfully, but these errors were encountered: