E/dalvikvm: Could not find class

ⅰ亾dé卋堺 提交于 2019-12-01 04:44:23

The logs that you're getting are normal. They simply represent those classes that are referred from your code conditionally. So, it doesn't matter if they exist or not.

The mentioned classes are not found because they don't exist on your device or the emulator at which you're running the app.

Why don't they exist? Because they were introduced in newer Android versions.

Pickup your first class from the log for example:

Could not find class 'android.util.ArrayMap'

ArrayMap was introduced in API level 19, probably you're running your app on an older version, and that's why the error is logged. They are harmless however.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!