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
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.
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
I hope this helps others as well.