skip to Main Content

Firebase – Firestore .where + Filter.and queries not working

I'm trying to perform a compound and Firestore query in Kotlin by following this guide: https://firebase.google.com/docs/firestore/query-data/queries#compound_and_queries My code is as follows: val query = Firebase.firestore .collection("profiles") .where( Filter.and( Filter.inArray("profileGender", preferenceGenderArray), Filter.equalTo("profilePaused", false) ) ) .get() Android Studio is giving me…

VIEW QUESTION

THis error regarding the gradle build and appcompat is coming in flutter

Execution failed for task ':app:mergeExtDexDebug'. Could not resolve all files for configuration ':app:debugRuntimeClasspath'. raryelements=aar, org.gradle.status=release, org.gradle.usage=java-runtime}. raryelements=aar, org.gradle.status=release, org.gradle.usage=java-runtime}. > Execution failed for DexingNoClasspathTransform: C:UsersGanesh Waje.gradlecachestransforms-3eca9a3155755829de657c56dd5ec41a3transformedjetified-appcompat-resources-1.7.0-runtime.jar. > Error while dexing. Failed to transform appcompat-1.7.0.aar (androidx.appcompat:appcompat:1.7.0) to match attributes {artifactType=android-dex, asm-transformed-variant=NONE,…

VIEW QUESTION
Back To Top
Search