当我开始一个新的Cordova空白项目时,它不起作用,我在stackoverflow上搜索并重新安装了包但仍然无效。
答案 0 :(得分:0)
可以使用以下代码清除应用程序启动时的缓存:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// clear cache
super.clearCache();
super.loadUrl("file:///android_asset/www/index.html");
}