我的logcat在logcat警告消息中显示TLUI而不是app

问题描述 投票:2回答:1

自上周以来我在编写的每个应用中,带有TLUI的警告都显示在我的logcat中:

12-31 04:02:27.108 25942-25942/com.example.user.threads W/System:ClassLoaderreferenced unknown path: /data/app/com.example.user.threads-1/lib/arm
12-31 04:02:27.694 25942-25942/com.example.user.threads W/System:ClassLoaderreferenced unknown path: /data/app/com.example.user.threads-1/lib/arm
12-31 04:02:27.913 25942-25942/com.example.user.threads W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
12-31 04:02:27.923 25942-25942/com.example.user.threads W/zipro: Error opening archive /data/TLUI/com.example.user.threads: I/O Error
12-31 04:02:27.924 25942-25942/com.example.user.threads W/zipro: Error opening archive /system/TLUI/com.example.user.threads: I/O Error
12-31 04:02:28.256 25942-25976/com.example.user.threads W/libEGL: [ANDROID_RECORDABLE] format: 1

((com.example.user.threads是我的包名称)

我不知道TLUI是什么意思。我的PC目录中没有这个名称。我也在这里搜索和搜索,但是没有结果。

此外,该术语总是会出现I / O错误。我重新安装了Android Studio,但还是一样。哪里有问题?

android android-studio logcat
1个回答
0
投票

我也在安装自己的apk时在logcat条目中看到了这一点。有一个目录/system/TLUI,在我的BLU手机上,仅包含带有两个png图标的文件夹appicon

但是,当使用libandroidfw.so(也可能是/data/TLUI)安装软件包时,电话上的/system/TLUI会在adbpm下查找档案。这是无害的警告;找到并安装了软件包;但这就是为什么您看到此消息。

© www.soinside.com 2019 - 2024. All rights reserved.