Android Studio Blank Activity Throws Error
I'm very much new in this android developing field. I just wanted to run the hello world program that is given by default in android studio as a startup under blank activity. I hav
Solution 1:
In your build.gradle file, update the following values under "android":
compileSdkVersion 23
buildToolsVersion '23.0.0'
Also, ensure that you have Android M Libraries (v23) downloaded. You can check this by going through the SDK Manager in the Android Studio toolbar.
Solution 2:
As Chris Banes (Support librtary developer) says in Google Plus
https://plus.google.com/+ChrisBanes/posts/ekKcJwtCW9U
You have to put compileSdkVersion
to 23 in your gradle
Post a Comment for "Android Studio Blank Activity Throws Error"