安卓项目中要用到jackson库,但是运行时报错
E/dalvikvm: Could not find class 'java.beans.Transient', referenced from method com.fasterxml.jackson.databind.ext.Java7SupportImpl.<init>
E/dalvikvm: Could not find class 'java.nio.file.Path', referenced from method com.fasterxml.jackson.databind.ext.Java7SupportImpl.getClassJavaNioFilePath
W/Java7Support: Unable to load JDK7 types (annotations, java.nio.file.Path): no Java7 support added
stackoverflow上有一个帖子,但是并不明白该怎么处理
http://stackoverflow.com/ques...
他的意思是:
如果这些
Warning
信息打扰到你,你可以将log
级别调为ERROR
,并不影响功能使用,只是Android 缺少这些api。Warning
信息打扰到你,你可以将log
级别调为ERROR
,并不影响功能使用,只是Android 缺少这些api。在
在proguard
中忽略这些Warning
proguard
中忽略这些Warning
日志:🎜