skip to Main Content

Unable to build apk nor app bundle after flutter update

I'm getting the following error when I try to build my apk: Execution failed for task ':assets_audio_player_web:verifyReleaseResources'. > A failure occurred while executing com.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action > Android resource linking failed ERROR:C:Userslubya.gradlecachestransforms-3ba0a6fe31cd4794ca72feaf033c059c8transformedcore-1.13.1resvaluesvalues.xml:113:5-122:25: AAPT: error: resource android:attr/lStar not found. I got a bunch…

VIEW QUESTION

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