8

Static interface methods are only supported starting with Android N (--min-api 24): okhttp3.Request okhttp3.Authenticator.lambda$static$0(okhttp3.Route, okhttp3.Response)

M Azam Khan
  • 302
  • 3
  • 15

1 Answers1

25

Add this in your build.gradle of your Module:app

android{
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

It will work

sai Pavan Kumar
  • 1,129
  • 12
  • 20