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
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"