android – VFY:无法解决[很多东西]

我今天回来工作,我开始使用模拟器(KitKat)调试我的应用程序,我的应用程序运行正常.自上周五以来我做了一些改变,但并不多.

然后我转移到设备(Gingerbread)并注意到上周工作的应用程序已经开始在主活动的setContentView()上崩溃.以下是警告/错误消息:

W/ActivityThread﹕ Application com.example.myapp is waiting for the debugger on port 8100...
W/dalvikvm﹕ VFY: unable to resolve static method 790: Landroid/net/TrafficStats;.setThreadStatsTag (I)V
W/dalvikvm﹕ VFY: unable to resolve instance field 50
W/dalvikvm﹕ VFY: unable to resolve virtual method 95: Landroid/app/Activity;.getFragmentManager ()Landroid/app/FragmentManager;
W/dalvikvm﹕ Unable to resolve superclass of Lmaps/aj/r; (671)
W/dalvikvm﹕ Link of class 'Lmaps/aj/r;' Failed
W/dalvikvm﹕ Unable to resolve superclass of Lmaps/ay/an; (6382)
W/dalvikvm﹕ Link of class 'Lmaps/ay/an;' Failed
W/dalvikvm﹕ Unable to resolve superclass of Lmaps/c/i; (6613)
W/dalvikvm﹕ Link of class 'Lmaps/c/i;' Failed
E/dalvikvm﹕ Could not find class 'maps.c.i',referenced from method maps.e.al.a
W/dalvikvm﹕ VFY: unable to resolve new-instance 6818 (Lmaps/c/i;) in Lmaps/e/al;

所有这些消息都出现在setContentView方法之后.

我注意到它提到了getFragmentManager,但这不是我的应用程序的一部分.由于它具有API 9兼容性,我使用的是AppCompat v7,getSupportFragmentManager并包含所需的Supporteverywhere.

我已经撤消了我今天早些时候所做的更改,但它仍然无效.
appcompat lib最近有可能更新吗?我正在使用Gradle来获取大部分内容

dependencies {
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.google.android.gms:play-services:+@aar'
    compile 'com.google.code.gson:gson:+@jar'
    compile 'com.google.zxing:android-integration:+@jar'
    compile 'com.googlecode.libphonenumber:libphonenumber:+@jar'
    compile 'com.intellij:annotations:12.0'
    compile filetree(dir: 'libs',include: ['*.jar'])
    compile project(':Facebook')
}

我不知道如何调试这些VFY错误.我该怎么办才能解决这些问题?

解决方法

I don’t kNow how to debug these VFY errors

它们不是错误.他们是警告.每行开头的“W”是“警告”的缩写.

这些警告只是注意到Dalvik在从APK加载无法解决的类时所看到的类,方法和其他符号.只要你没有实际执行任何包含任何缺失的东西的代码,一切都会好的.此外,它们在很大程度上是不可避免的,因为它们是应用程序和库代码的自然副作用,在支持这些功能的新设备上使用更新的功能.

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...