closingMethod属性的匿名内部类的InnerClass

closingMethod属性的匿名内部类的InnerClass

本文介绍了这是什么警告:忽略不带有关联的EnclosingMethod属性的匿名内部类的InnerClasses属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了3种布局HDPI,MDPI和LDPI,并编辑了xml文件中的任何一个,在控制台中,它们显示了错误:

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:

推荐答案

包含jar文件时,这是常见警告.

It is a common warning when including jar files.

在proguard中使用以下行来避免警告

Use below line in proguard to avoid warning

-keepattributes EnclosingMethod

这篇关于这是什么警告:忽略不带有关联的EnclosingMethod属性的匿名内部类的InnerClasses属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 17:07