Compare commits

...
7 Commits
6 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -1 +1 @@
2.6.0
2.7.0
+1 -1
View File
@@ -33,7 +33,7 @@
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova-2.6.0.js"></script>
<script type="text/javascript" src="cordova-2.7.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
+3 -3
View File
@@ -1,8 +1,8 @@
// Platform: android
// commit d0ffb852378ff018bac2f3b12c38098a19b8ce00
// commit cd29cf0f224ccf25e9d422a33fd02ef67d3a78f4
// File generated at :: Thu Apr 18 2013 15:10:54 GMT-0400 (EDT)
// File generated at :: Thu Apr 25 2013 14:53:10 GMT-0700 (PDT)
/*
Licensed to the Apache Software Foundation (ASF) under one
@@ -6813,7 +6813,7 @@ require('cordova/channel').onNativeReady.fire();
xhr.onload = function() {
// If the response is a JSON string which composes an array, call handlePluginsObject.
// If the request fails, or the response is not a JSON array, just call finishPluginLoading.
var obj = JSON.parse(this.responseText);
var obj = this.responseText && JSON.parse(this.responseText);
if (obj && obj instanceof Array && obj.length > 0) {
handlePluginsObject(obj);
} else {
+1 -1
View File
@@ -19,7 +19,7 @@
<html>
<head>
<title></title>
<script src="cordova-2.6.0.js"></script>
<script src="cordova-2.7.0.js"></script>
</head>
<body>
+1 -1
View File
@@ -38,7 +38,7 @@ import android.telephony.TelephonyManager;
public class Device extends CordovaPlugin {
public static final String TAG = "Device";
public static String cordovaVersion = "2.6.0"; // Cordova version
public static String cordovaVersion = "2.7.0"; // Cordova version
public static String platform = "Android"; // Device OS
public static String uuid; // Device UUID
@@ -43,13 +43,12 @@ public class IceCreamCordovaWebViewClient extends CordovaWebViewClient {
@Override
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
if(url.contains("?") || url.contains("#") || needsIceCreamSpaceInAssetUrlFix(url)){
WebResourceResponse ret = generateWebResourceResponse(url);
if (ret != null) {
return ret;
}
//Check if plugins intercept the request
WebResourceResponse ret = super.shouldInterceptRequest(view, url);
if(ret == null && (url.contains("?") || url.contains("#") || needsIceCreamSpaceInAssetUrlFix(url))){
ret = generateWebResourceResponse(url);
}
return super.shouldInterceptRequest(view, url);
return ret;
}
private WebResourceResponse generateWebResourceResponse(String url) {