skip to Main Content

Firebase – Updated : uses-sdk:minSdkVersion 16 cannot be smaller than version 19 declared in library [:cloud_firestore]

android/app/build.gradle defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "cmon.com" // You can update the following values to match your application needs. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. minSdkVersion flutter.minSdkVersion targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName…

VIEW QUESTION

Firebase – Read arrays from Firestore and put them inside an ArrayList – Java in Android Studio

I'm trying to create an application that can read the values from a Firestore array and put them into an ArrayList or something, this is my code: ArrayList<Integer> driverPermissions = new ArrayList<>(); Firestore.collection("Admins").document("1234567890").get().addOnCompleteListener(task -> { DocumentSnapshot document = task.getResult(); driverPermissions…

VIEW QUESTION
Back To Top
Search