android build warning: Ignoring InnerClasses attribute for an anonymous inner class

来源:互联网 发布:李炎恢javascript笔记 编辑:程序博客网 时间:2024/06/08 09:07
warning: Ignoring InnerClasses attribute for an anonymous inner class(com.umeng.socialize.bean.a) that doesn't come with anassociated EnclosingMethod attribute. This class was probably produced by acompiler that did not target the modern .class file format. The recommendedsolution is to recompile the class from source, using an up-to-date compilerand without specifying any "-target" type options. The consequence of ignoringthis warning is that reflective operations on this class will incorrectlyindicate that it is *not* an inner class.warning: Ignoring InnerClasses attribute for an anonymous inner class(com.umeng.socialize.bean.b) that doesn't come with anassociated EnclosingMethod attribute. This class was probably produced by acompiler that did not target the modern .class file format. The recommendedsolution is to recompile the class from source, using an up-to-date compilerand without specifying any "-target" type options. The consequence of ignoringthis warning is that reflective operations on this class will incorrectlyindicate that it is *not* an inner class.//////////////////////////////////////////////////////////////////////////////////////see:http://stackoverflow.com/questions/29003114/android-build-fails-over-com-android-dex-dexexception-multiple-dex-files-defineSolved:
dependencies {    compile fileTree(dir: 'libs', include: '*.jar', exclude: 'android-support-*.jar')    //...}

0 1
原创粉丝点击