You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2012/07/31 22:41:34 UTC

[1/3] android commit: This was a red herring. There was an XML error on the example when compared with master

Updated Branches:
  refs/heads/master a29b8e5b3 -> db7ee192f


This was a red herring.  There was an XML error on the example when compared with master


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/commit/db7ee192
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/db7ee192
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/db7ee192

Branch: refs/heads/master
Commit: db7ee192f7c92541758d8bc96cac927ee74ab12b
Parents: 2ec0b60
Author: Joe Bowser <bo...@apache.org>
Authored: Tue Jul 31 12:20:31 2012 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Tue Jul 31 12:20:31 2012 -0700

----------------------------------------------------------------------
 .../src/org/apache/cordova/CordovaWebView.java     |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/db7ee192/framework/src/org/apache/cordova/CordovaWebView.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java
index b45727e..7fd5775 100755
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -194,10 +194,8 @@ public class CordovaWebView extends WebView {
         
         //Jellybean rightfully tried to lock this down. Too bad they didn't give us a whitelist
         //while we do this
-        /*
         if(android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
             settings.setAllowUniversalAccessFromFileURLs(true);
-        */
         // Enable database
         settings.setDatabaseEnabled(true);
         String databasePath = this.cordova.getActivity().getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath();