- 异常之:Static interface methods are
- 记一次使用butterknife 10.1.0报异常
- Static interface methods are onl
- Error: Static interface methods
- Static interface methods are onl
- Static interface methods are onl
- Static interface methods are onl
- Error: Static interface methods
- 错误Static interface methods are o
- 284. Peeking Iterator
Error: Static interface methods are only supported starting with Android N (--min-api 24): okhttp3.Request okhttp3.Authenticator.lambda$static$0(okhttp3.Route, okhttp3.Response)
原因:lambda的支持问题
错误解决方案:
gradle文件中:
android标签内添加
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
网友评论