Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is this warning: Ignoring InnerClasses attribute for an anonymous inner class that doesn't come with an associated EnclosingMethod attribute [duplicate]

I created the 3 layouts HDPI and MDPI and LDPI and I edit the any one of xml file, in console, they show the error:

warning: Ignoring InnerClasses attribute for an anonymous inner class that doesn't come with an associated EnclosingMethod attribute. (This class was probably produced by a broken compiler.)

like image 468
Anil M H Avatar asked Jun 17 '13 06:06

Anil M H


1 Answers

It is a common warning when including jar files.

Use below line in proguard to avoid warning

-keepattributes EnclosingMethod 
like image 109
Arun C Avatar answered Oct 06 '22 02:10

Arun C