Static interface methods are only supported starting with Android N (--min-api 24): void butterknife.Unbinder.lambda$static$0()

에러발생

 

아래와 같이 build.gradle에 추가해주니 해결되었음!. 

 

android {

.....

......

    compileOptions{
      sourceCompatibility JavaVersion.VERSION_1_8
      targetCompatibility JavaVersion.VERSION_1_8
    }

}

 

 

블로그 이미지

Hi5Lab_Master

,