We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1601b60 commit b32be30Copy full SHA for b32be30
tests/tests.js
@@ -3438,8 +3438,9 @@ exports.defineAutoTests = function () {
3438
var pathExpect = 'file://';
3439
3440
if (cordova.platformId === 'android') {
3441
- // Starting from Cordova-Android 10.x, the app content is served from the https scheme
3442
- pathExpect = 'https://';
+ // From Cordova-Android 10.x, app content is served from the "https" scheme by default
+ // The paramedic plugin changes the scheme to http to avoid ssl.
3443
+ pathExpect = 'http://';
3444
} else if (isChrome) {
3445
pathExpect = 'filesystem:http://';
3446
}
0 commit comments