郑州app开发过程中,遇到问题:Static interface methods are only supported starting with Android N (--min-api 24): okhttp3.Request okhttp3.Authenticator.lambda$static$0(okhttp3.Route, okhttp3.Response)。
出现这些错误,主要是需要添加配置声明。下面是修改地方:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
请把上面这段代码,添加到如下位置:
其实就是添加依赖的地方,不过是上面,请看红框圈起来的地方。