Android studio warning - InnerClass annotations are missing corresponding EnclosingMember annotations

后端 未结 2 1693
半阙折子戏
半阙折子戏 2020-12-25 11:51

I recently upgraded to Android Studio 3.1 and upon building my Kotlin with Java project I got the following warning.

InnerClass annotations are missing c

2条回答
  •  再見小時候
    2020-12-25 12:36

    It may because some annotations be confused, so just add proguard rule:

    -keepattributes *Annotation*
    -keep @**annotation** class * {*;}

    it worked fine to me.

提交回复
热议问题