我构建了一个简单的ember-cordova应用程序。当我运行ember cordova模拟它给出一个apk文件但是当应用程序在模拟器中打开时它说
"net::ERR_FILE_NOT_FOUND(file:///android_asset/www/index.html)".
我已从index.html中删除了对{{rootURL}}的所有引用,并从rootURL中删除了前导斜杠。 locationType也设置为hash。
答案 0 :(得分:1)
我的构建失败了,这就是我找不到文件错误的原因。但是,构建失败并出现“未定义错误”。我不得不使用
删除平台ember cordova platform remove android
并使用
重新安装ember cordova platform add android
完成这些步骤后,它开始工作。