“Ignoring InnerClasses attribute” warning is killing Eclipse

前端 未结 2 692
故里飘歌
故里飘歌 2020-12-18 22:23

I have a couple of imported jars that have this error in Eclipse when the project builds:

[2011-04-08 16:31:48 - MokbeeAndroid] Dx warning: Ignoring InnerCla         


        
2条回答
  •  暖寄归人
    2020-12-18 23:03

    This was causing me a lot of pain with the android-maven-plugin and other libraries that included commons-logging. It was blocking my build. What made it worse is that some libraries were included transitively, so simply using would not work. With a little hint from another post, I determined I could keep out the offending library altogether with something like this:

        
        
            commons-logging
            commons-logging
            1.1.1
            provided
        
    

提交回复
热议问题