0

在我的开发者控制台中,我收到了这个错误报告:

android.database.sqlite.SQLiteDiskIOException: error code 10: disk I/O error
at android.database.sqlite.SQLiteStatement.native_execute(Native Method)
at android.database.sqlite.SQLiteStatement.execute(SQLiteStatement.java:61)
at android.database.sqlite.SQLiteDatabase.delete(SQLiteDatabase.java:1777)
at android.webkit.WebViewDatabase.clearCache(WebViewDatabase.java:708)
at android.webkit.CacheManager.clearCache(CacheManager.java:605)
at android.webkit.WebViewWorker.handleMessage(WebViewWorker.java:199)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.os.HandlerThread.run(HandlerThread.java:60)

我的应用程序中没有 swlite 数据库,我使用 adMob、Facebook API 和 Google Maps api v2,有人知道这可能是由什么引起的吗?谢谢

4

2 回答 2

0

检查这个网址。它可以帮助你

Since you are using External Storage, your application must be aware of the External Storage state, which you can get via `Environment.getExternalStorageState()'.

You must only access External Storage when the state is MOUNTED.

关联

谢谢

于 2013-04-10T16:23:01.807 回答
-1

这似乎是android的一个已知错误。但还没有摆脱它。看这里:

https://android.googlesource.com/platform/external/sqlite.git/

并通知提交

42c3f41 添加更多日志记录以跟踪磁盘 I/O 错误。通过杰夫布朗 - 10 个月前

于 2013-04-19T16:35:22.540 回答