This commit is contained in:
parent
855b7f2d99
commit
eb00081e6e
|
@ -2834,7 +2834,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(scripts[i].src.indexOf('asset')!=-1){
|
if(scripts[i].src.indexOf('cordova')!=-1){
|
||||||
lib.assetLoading=[];
|
lib.assetLoading=[];
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -3200,6 +3200,7 @@
|
||||||
navigator.app.exitApp();
|
navigator.app.exitApp();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
if(window.resolveLocalFileSystemURL){
|
||||||
window.resolveLocalFileSystemURL(cordova.file.externalApplicationStorageDirectory,function(entry){
|
window.resolveLocalFileSystemURL(cordova.file.externalApplicationStorageDirectory,function(entry){
|
||||||
var url=entry.toURL();
|
var url=entry.toURL();
|
||||||
if(Array.isArray(lib.assetLoading)){
|
if(Array.isArray(lib.assetLoading)){
|
||||||
|
@ -3223,6 +3224,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
css:function(path,file,before){
|
css:function(path,file,before){
|
||||||
var style = document.createElement("link");
|
var style = document.createElement("link");
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"name": "noname",
|
||||||
|
"xwalk_version": "1.8.0",
|
||||||
|
"xwalk_app_version": "1.8.0",
|
||||||
|
"xwalk_package_id": "com.widget.noname_full",
|
||||||
|
"xwalk_android_keep_screen_on":true,
|
||||||
|
"start_url": "index.html",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "../res/icon/icon-256.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"density": "1.3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "../res/icon/icon-256.png",
|
||||||
|
"sizes": "144x144",
|
||||||
|
"type": "image/png",
|
||||||
|
"density": "1.8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "../res/icon/icon-256.png",
|
||||||
|
"sizes": "96x96",
|
||||||
|
"type": "image/png",
|
||||||
|
"density": "2.7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "../res/icon/icon-256.png",
|
||||||
|
"sizes": "72x72",
|
||||||
|
"type": "image/png",
|
||||||
|
"density": "3.6"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": "fullscreen",
|
||||||
|
"orientation": "landscape"
|
||||||
|
}
|
Loading…
Reference in New Issue