Reputation: 1
How to change the compile version to sdk 22 without getting errors about appcompat-v7:23.0.0 ?
Upvotes: 0
Views: 45
Reputation: 2189
You can't... appcompat-v7:23.0.0 NEEDS SDK 23.
It's: SDK 22 OR appcompat-v7:23.0.0
*edit, but with this you can set the SDK compartible to what you might need: (does this makes sense?)
gradle.build(Module: app)
android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
defaultConfig {
applicationId "com.example.appname"
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
}
Upvotes: 1