My android application currently with API 22:
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
}
dependencies {
.......
compile 'com.android.support:support-v4:22.2.1'
.......
}
I would like to make a migration to API 23:
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
}
dependencies {
.......
compile 'com.android.support:support-v4:23.0.1'
.......
}
So basically i need to keep my old version of targetSdkVersion 22 for the reason to test some difference in permissions, but when i'm doing this it gives me error of compilation
....\build\intermediates\res\merged\debug\values-v23\values-v23.xml
Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(18) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
Question : Is it possible to keep targetSdkVersion 22?