When I use 1.0.5, my project build error
D:\workspace\CoCoin\app\build\intermediates\exploded-aar\com.wnafee\vector-compat\1.0.5\res\drawable\ic_arrow_vector.xml :app:mergeDebugResources FAILED Error:Execution failed for task ':app:mergeDebugResources'.
D:\workspace\CoCoin\app\build\intermediates\exploded-aar\com.wnafee\vector-compat\1.0.5\res\drawable\ic_arrow_vector.xml: Error: error in parsing "g/"
What can I do to make my project correct? Thanks.
Same problem here.
I have the same problem. Are u working on that?
Guys, read first: #30 #24
vectorDrawables.useSupportLibrary = true is missing . Please add this line in defaultConfig {} in build.gradle file
for eg.
apply plugin: 'com.android.library'
android { compileSdkVersion 22 buildToolsVersion "22.0.1"
lintOptions {
abortOnError false
}
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:22.1.1' }