com.android.tools.r8.a: Static interface methods are only supported starting에 compileOpt를 추가한 후 플래시 앤 드롭 솔루션입니다.

내 환경은 Buttekrnife를 사용했다.
 
1.com.android.tools.r8.a: Static interface methods are only supported starting 해결 방법은 다음 코드를 추가하는 것입니다.
compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
}

 
2. 그러나 compileOptions를 추가한 후 프로그램이 꺼집니다.그래서 저는 annotationProcessor'com을jakewharton:butterknife-compiler:10.2.1'이 코드는 하위 모듈에서 메인 모듈로 이동하면 괜찮습니다.butteknife를 처리하는 데 사용되는 주석이기 때문에, 주 모듈에 추가하지 않으면 @BindView () 로 가져오는 컨트롤을null로 하고 프로그램이 꺼집니다.
PS: 자module도 버터니프의 주석을 사용해야 한다면 다 넣으세요.
 
  • 서브모델 추가butterknife 의존:
  • api 'com.jakewharton:butterknife:10.2.1'
    
  • 메인 모델 추가butterknife 주석 프로세서 의존:
  • annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
    
  • 프로젝트의gradle 파일
  • dependencies {
            classpath "com.android.tools.build:gradle:4.0.0"
            classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }

     
     
     
    도움이 됐으면 좋겠어요.
    제가 제대로 쓰지 못한 곳이 있으면 아래에 메시지를 남겨주세요.

    좋은 웹페이지 즐겨찾기