error: package com.android.annotations does not exist

后端 未结 13 2360
南旧
南旧 2020-12-13 11:55

I have the following class

import com.android.annotations.NonNullByDefault;

@NonNullByDefault
public final class Log {
    ...
}

and here

13条回答
  •  心在旅途
    2020-12-13 12:40

    if error from butterknife auto generated file then update butterknife dependency version

    implementation 'com.jakewharton:butterknife:10.0.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
    

提交回复
热议问题