gpt4 book ai didi

android - net::ERR_FILE_NOT_FOUND file:///android_asset/www/index.html 找不到

转载 作者:太空宇宙 更新时间:2023-11-03 10:43:29 29 4
gpt4 key购买 nike

我有一个 cordova 应用程序(我正在为 Android 构建),我已经使用命令行上的 keytools 签名并将其安装到我的 Android 设备上。

每当我在手机上打开应用程序时,都会收到以下错误:

Application Error
net::ERR_FILE_NOT_FOUND (file:///android_asset/www/index.html)

我的手机有互联网连接,因此移动互联网连接有效 - 任何人都可以帮助调试问题吗?

我遇到了许多与移动远程 Assets 相关的修复,但是我在我的应用程序中看不到任何指向远程 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>

-- 更新--在我的平台“android”文件夹中有一个“assets”文件夹——它具有以下结构:

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 应该显示...有什么想法吗??

最佳答案

您应该在 cordova run android 之前运行 cordova build android 或通过运行 cordova build android && cordova run android --device 使其变得简单
PS:如果你在 mac 上工作,不要忘记 sudo

关于android - net::ERR_FILE_NOT_FOUND file:///android_asset/www/index.html 找不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29648669/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com