ProGuard: Warning: butterknife.internal.InjectViewProcessor:

后端 未结 2 686
被撕碎了的回忆
被撕碎了的回忆 2021-02-08 00:57

I faced this error during generating apk using idea13

ProGuard:  Warning: butterknife.internal.InjectViewProcessor: can\'t find superclass or interface javax.ann         


        
2条回答
  •  眼角桃花
    2021-02-08 01:22

    If anyone does face an issue with Proguard and Butterknife, use the following given at http://jakewharton.github.io/butterknife/index.html#proguard

    -keep class butterknife.** { *; }
    -dontwarn butterknife.internal.**
    -keep class **$$ViewBinder { *; }
    
    -keepclasseswithmembernames class * {
        @butterknife.* ;
    }
    
    -keepclasseswithmembernames class * {
        @butterknife.* ;
    }
    

提交回复
热议问题