我有一个使用命令行上的keytools签名的cordova应用程序(我正在为Android构建),并将其安装到我的Android设备上。
每当我在手机上打开应用程序时,我都会收到以下错误:
Application Error
net::ERR_FILE_NOT_FOUND (file:///android_asset/www/index.html)
我的手机有互联网连接,因此有一个活跃的移动互联网连接 - 任何人都可以帮助调试问题吗?
我遇到了一些与移动远程资产有关的修复,但是我在我的应用程序中看不到有任何指向远程URL的链接。
有没有办法可以做一个堆栈跟踪'允许我指出应用程序错误在我的应用程序中引发的确切点?
任何提示都会受到赞赏
- 更新 - 这是在模拟器中生成的adb日志
对于其他任何可能有帮助的人我使用以下方法将模拟器日志输出到文件: - (需要双>>才能将数据附加到文件中)
adb -e logcat >> emulator.log
https://gist.github.com/anonymous/e53abb7eb089950ac4e5
- 更新 - 我的AndroidManifest.xml文件如下所示:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="1" android:versionName="0.0.1" package="com.myapp" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="21" />
</manifest>
- 更新 - 在我的平台内&#39; android&#39;文件夹是一个资产&#39;文件夹 - 具有以下结构:
www/
_where-is-www.txt
www/css
www/img
www/js
www/res
www/app.html
www/cordova.js
www/cordova_plugins.js
www/index.php
似乎没有index.html - 即使cordova设置声明了index.html文件......我无法理解为什么会这样做。
注意: 我正在创建一个cordova应用程序,添加一个Android平台,然后从现有应用程序的另一个目录复制我现有的www文件夹(已经开发并发布到Play商店,所以工作正常) - 然后最终进行构建。不确定为什么index.html应该显示......任何想法??
答案 0 :(得分:1)
您应该在cordova build android
之前运行cordova run android
,或者通过运行cordova build android && cordova run android --device
来简化。{
PS:如果你使用mac
sudo