Use of Android added Butterknife disposed in build.gradle

Configuring the Android studio project: Butterknife

In the main Moduel build.gradleadded as follows :

dependencies {
    
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}

 

Guess you like

Origin www.cnblogs.com/Mr-East/p/11413837.html