I\'m using Android Studio 1.5.1, Gradle 2.8 and my project min sdk vserion:14, target sdk version: 23.
So, When I add vectorDrawables to configuration by documentat
Specifically to upgrade from com.android.tools.build:gradle:1.5.0.
Edit /build.gradle and set:
buildscript {
...
dependencies {
...
classpath 'com.android.tools.build:gradle:2.0.0'
...
}
}
Edit /gradle/wrapper/gradle-wrapper.properties and set:
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
Edit your module(s)' build.gradle and add:
android {
...
defaultConfig {
...
vectorDrawables.useSupportLibrary = true
}
...
}