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 trial

Android Build a Simple Android App (2014) Getting Started with Android Setting Up an Android Development Environment for Windows

IS it ok if I have a updated java version having a old android sdk

pls help me is it ok I have java 8 installed and android sdk beta version would it cause any problem

Jeff Wilton
Jeff Wilton
16,646 Points

Java 8 is a major change from Java 7 (no more PermGen space for example), so you need to be careful with any programs that run Java and look at the system requirements, otherwise you might run into problems (which may or may not be obviously related to the JDK/JRE version).

In the case of Android SDK you can look here for example: https://developer.android.com/sdk/index.html#Requirements

For Windows it states this requirement:

  • Java Development Kit (JDK) 7

Note that it doesn't say JDK 7 or higher, so I would take this to mean that only Java 7 is supported at this time.

Hope this helps!