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

Firebase functions not loading .env file

According to the Firebase documentation, Loaded environment variables from .env. should be printed to the console when deploying functions. My functions are exported inside src/functions/functions.ts. This is specified in my package.json file: main: lib/src/functions/functions.js (since I am using TypeScript, I…

VIEW QUESTION
Back To Top
Search