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

ayushi singh
ayushi singh
2,940 Points

Android SDK is partially installed

I was facing rendering issue as below Rendering Problems Android N requires the IDE to be running with Java 1.8 or later Install a supported JDK But I have Java 1.8 installed. I checked Android SDK and its showing partially installed. Is the rendering issue happening because of that? I tried uninstalling and installing again but facing the same issue

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

In creating the project when you're asked for a minimum SDK and target SDK, The dropdowns will have both numeric versions and one alphabetical version (currently N). The alphabetical version a preview of an upcoming Android release, which is for delevopers to try out and test new features, while the numbered ones are the actual released versions of the OS. You want to stick with the numbered versions. There should be versions recommended by Ben in the video (though the latest target SDK should be 23), and they can be edited in the app's build.gradle file instead of starting a new project from scratch. (You should also make sure you download the target SDK version in the SDK Manager)

ayushi singh
ayushi singh
2,940 Points

Thanks a lot Seth! That solved my problem