Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When I use 1.0.5, my project build error #33

Open
wikison opened this issue Jan 15, 2016 · 4 comments
Open

When I use 1.0.5, my project build error #33

wikison opened this issue Jan 15, 2016 · 4 comments

Comments

@wikison
Copy link

wikison commented Jan 15, 2016

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.

@diogojg
Copy link

diogojg commented Jan 16, 2016

Same problem here.

@stepansanda
Copy link

I have the same problem. Are u working on that?

@zayo
Copy link

zayo commented Jan 21, 2016

Guys, read first: #30 #24

@AshishPsaini
Copy link

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'
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants