Skip to content Skip to sidebar Skip to footer

Android Studio - Unexpected Top-level Exception For Empty Project

How do I solve this? I installed Android Studio on a new computer, I opted for a new Project, I followed the wizard and then without adding any code and without changing anything i

Solution 1:

You have Support library version 20 installed, but are telling gradle to look for version 19.

change the dependency line to:

compile'com.android.support:support-v4:20.+'

and it should work correctly

Post a Comment for "Android Studio - Unexpected Top-level Exception For Empty Project"