android studio 3.1 Warning: The rule `-keep public class *extends java.lang.annotation.Annotation {

后端 未结 11 1484
天命终不由人
天命终不由人 2021-01-31 07:48

i recently upgraded android studio but im not able to find the source of the following issue reported in android studio 3.1:

Warning: The rule `-keep public clas         


        
11条回答
  •  遥遥无期
    2021-01-31 08:21

    You are missing a space between the wildcard * and the keyword extends. The warning itself probably does not come from ProGuard but from the builtin shrinker of google.

    If you can not find it in your project, then it is most likely a broken rule from a consumer Proguard file included in of the the dependent aar files.

提交回复
热议问题