skip to Main Content

google play services problem in flutter firebase

W/GooglePlayServicesUtil(16697): com.example.try_1 requires the Google Play Store, but it is missing. E/GooglePlayServicesUtil(16697): GooglePlayServices not available due to error 9 W/Firestore(16697): (24.7.0) [GrpcCallProvider]: Failed to update ssl context: com.google.android.gms.common.GooglePlayServicesNotAvailableException this is what prints me in the terminal of android studio when…

VIEW QUESTION

Firebase – How to do this on recyclerview in android using firestore

This is the result of RecyclerView: Firestore database schema: this is the code I am using. This only retrieve data like in a image db.collection("Expenses") .whereEqualTo("Email",email) .whereGreaterThanOrEqualTo("Date",MonthFirstDate) .whereLessThanOrEqualTo("Date",TodayDate) .orderBy("Date") .get() .addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() { @Override public void onSuccess(QuerySnapshot queryDocumentSnapshots) { if…

VIEW QUESTION

Flutter – Specs satisfying the `app_settings (from `.symlinks/plugins/app_settings/ios`)` dependency were found, but they required a higher minimum deployment

I run pod install for my Flutter app, I'm getting this error: [!] CocoaPods could not find compatible versions for pod "app_settings": In Podfile: app_settings (from `.symlinks/plugins/app_settings/ios`) Specs satisfying the `app_settings (from `.symlinks/plugins/app_settings/ios`)` dependency were found, but they required a…

VIEW QUESTION
Back To Top
Search