Hello ,
I am receiving this message "Google play services are needed for this service but not availabe on this device "
I suppose its' requred by Firebase nativescript plugin . But in general is it possible to add this Google play services to my project .
I am not sure what is happening , because from other point it seems its added to firebase include.gradle . From what I read it seems that user should have
Google Play services APK on their device . (https://developers.google.com/android/guides/setup)
dependencies {
// make sure you have these versions by updating your local Android SDK's (Android Support repo and Google repo)
compile "com.google.firebase:firebase-core:11.0.+"
compile "com.google.firebase:firebase-database:11.0.+"
compile "com.google.firebase:firebase-auth:11.0.+"
// for converting Java objects to JS
compile "com.google.code.gson:gson:2.8.+"
// for reading google-services.json and configuration
def googlePlayServicesVersion = project.hasProperty('googlePlayServicesVersion') ? project.googlePlayServicesVersion : '11.0.+'
compile "com.google.android.gms:play-services-base:$googlePlayServicesVersion"