Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPaul Vickers
3,380 PointsError: Static interface methods are only supported starting with Android N (--min-api 24): okhttp3.Request okhttp3.Authe
I am getting this error message and it won't compile
2 Answers
Lauren Moineau
9,483 PointsHi Paul. Check my answer to a similar question.
Hope that helps :)
Martin Klestil
5,520 PointsAfter hours of struggling, I solved it by including the following within app/build.gradle:
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}