Nativescript-plugin-firebase: Execution failed for task ':app:processDebugResources'

Created on 27 May 2018  路  1Comment  路  Source: EddyVerbruggen/nativescript-plugin-firebase

I am using nativescript-vue and this happened when i installed firebase on my project. i tried running 'tns run android' on dist folder for more info and this is the output: https://pastebin.com/yC26S7V2

This is my repo: https://github.com/ephraimlambarte/utang-app.git

Most helpful comment

I had the same problem when using the firebase plugin in in conjunction with few other plugins (geolocation,mapbox etc)

Following a suggestion from this post helped me:

Put the following code in app.gradle

  dependencies {
    compile 'com.android.support:appcompat-v7:26.0.0'
    compile 'com.android.support:support-v4:26.0.0'
}

I hope this helps others as well.

>All comments

I had the same problem when using the firebase plugin in in conjunction with few other plugins (geolocation,mapbox etc)

Following a suggestion from this post helped me:

Put the following code in app.gradle

  dependencies {
    compile 'com.android.support:appcompat-v7:26.0.0'
    compile 'com.android.support:support-v4:26.0.0'
}

I hope this helps others as well.

Was this page helpful?
0 / 5 - 0 ratings