You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2015/10/23 12:35:34 UTC

cordova-plugin-wkwebview-engine git commit: Updated README by adding Application Transport Security (iOS 9) section

Repository: cordova-plugin-wkwebview-engine
Updated Branches:
  refs/heads/master f30ff1cc9 -> 8cba45fb9


Updated README by adding Application Transport Security (iOS 9) section


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-wkwebview-engine/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-wkwebview-engine/commit/8cba45fb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-wkwebview-engine/tree/8cba45fb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-wkwebview-engine/diff/8cba45fb

Branch: refs/heads/master
Commit: 8cba45fb9612d92024b9375d2a35bf04713dff78
Parents: f30ff1c
Author: Shazron Abdullah <sh...@apache.org>
Authored: Fri Oct 23 03:35:27 2015 -0700
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Fri Oct 23 03:35:27 2015 -0700

----------------------------------------------------------------------
 README.md | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-wkwebview-engine/blob/8cba45fb/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 2704851..a580699 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ To test this:
     cordova platform add https://github.com/apache/cordova-ios.git#master
     cordova plugin add https://github.com/apache/cordova-plugin-wkwebview-engine.git#master
 
-Currently, you will have to add the `master` version (>=1.1.1) of the cordova-plugin-whitelist, not the one in npm. So do this also:
+Currently, you will have to add the `master` version (>=1.1.1) of the [cordova-plugin-whitelist](https://github.com/apache/cordova-plugin-whitelist) plugin, not the one in npm. So do this also:
 
     cordova plugin rm cordova-plugin-whitelist
 	cordova plugin add https://github.com/apache/cordova-plugin-whitelist.git#master
@@ -35,6 +35,20 @@ On an iOS 8 system, Apache Cordova during runtime will switch to using the UIWeb
 
 We have an [experimental plugin](https://github.com/apache/cordova-plugins/tree/master/wkwebview-engine-localhost) that does this. You would use that plugin instead of this one.
 
+Application Transport Security (ATS) in iOS 9
+-----------
+
+The next released version of the [cordova-cli](https://www.npmjs.com/package/cordova) will support automatic conversion of the [cordova-plugin-whitelist](https://github.com/apache/cordova-plugin-whitelist) &lt;access&gt; and &lt;allow-navigation&gt; tags in config.xml to ATS directives. For now you will have to manually add ATS directives in your application's Info.plist.
+
+The default in all new Apache Cordova projects is the wildcard (*), so add the entry below in your application's Info.plist:
+
+    <key>NSAppTransportSecurity</key>
+    <dict>
+	    <key>NSAllowsArbitraryLoads</key>
+	    <true/>
+    </dict>
+
+
 Permissions
 -----------
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org