Stack Overflow archive
13 score

AppcompatActivity Error with Android studio

score
13
question views
40.8K
license
CC BY-SA 3.0

Update your support library to 23 and your compileSdkVersion to 23 in build.gradle.

java
compileSdkVersion 23

...

compile 'com.android.support:support-v4:23.0.0'
compile 'com.android.support:appcompat-v7:23.0.0'

Then sync your project with gradle files.

Also, Google Play Services is now 7.8.0

Originally posted on Stack Overflow. Public user contributions are licensed under Creative Commons Attribution-ShareAlike.