THEME_HOLO_LIGHT deprecated in API 23.
So why am I still getting an obsolescence warning when I verify that I am using it in API <23?

Relevant part of mine build.gradle:
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
useLibrary "org.apache.http.legacy"
defaultConfig {
applicationId "com.my.app"
minSdkVersion 14
targetSdkVersion 23
}
source
share