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 trialRihard Suler
Courses Plus Student 162 PointsI keep getting an error: Unsupported major.minor version 52.0
Error:(1, 1) A problem occurred evaluating project ':app'.
java.lang.UnsupportedClassVersionError: com/android/build/gradle/AppPlugin : Unsupported major.minor version 52.0
2 Answers
Seth Kroger
56,413 PointsThe current gradle build tools require Java 8 but you have the JDK set to a 7 or lower one. Make sure you have a Java 8 set as the JDK in the SDK location panel of Project Structure, (it can be set to "Use embedded JDK" or similar if the option is available in your version of Android Studio)
Rihard Suler
Courses Plus Student 162 PointsThat worked, thanks!