谷歌播放报告一些设备上的例外(所有都是"其他"和一个"LG-E400",所以它可能是一些自定义的Android版本)
例外情况是:
java.lang.IllegalArgumentException
at android.os.StatFs.native_setup(Native Method)
at android.os.StatFs.<init>(StatFs.java:32)
at android.webkit.CacheManager.init(CacheManager.java:199)
at android.webkit.BrowserFrame.<init>(BrowserFrame.java:210)
at android.webkit.WebViewCore.initialize(WebViewCore.java:201)
at android.webkit.WebViewCore.access$500(WebViewCore.java:54)
at android.webkit.WebViewCore$WebCoreThread$1.handleMessage(WebViewCore.java:631)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.webkit.WebViewCore$WebCoreThread.run(WebViewCore.java:653)
at java.lang.Thread.run(Thread.java:1019)
Run Code Online (Sandbox Code Playgroud)
问题是我不能忽略这个axception'因为它在单独的线程中.这个问题有什么解决方案吗?或者我该怎么办?
我有一个带有gradle的android项目构建.
它与proguard混淆了.
Proguard生成具有70 MB的dump.txt文件.
我不想要它.我不需要它.它耗尽了我的SSD.
我可以禁用dump.txt文件生成吗?
我创建了备份规则文件,就像示例https://developer.android.com/guide/topics/data/autobackup:
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content xmlns:android="http://schemas.android.com/apk/res/android">
<include
domain="sharedpref"
path="." />
<exclude
domain="sharedpref"
path="nonceStorage.xml" />
<exclude
domain="sharedpref"
path="localStorage.xml" />
</full-backup-content>
Run Code Online (Sandbox Code Playgroud)
和Android Studio说有错误:
Error:(8, 15) `nonceStorage.xml` is not in an included path [FullBackupContent]
Error:(11, 15) `localStorage.xml` is not in an included path [FullBackupContent]
Run Code Online (Sandbox Code Playgroud)
错误消息完全没有信息且不可谷歌(几乎所有单词都很短).谁能解释一下,这个***对我有什么要求?如何解决这个问题?