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

Flutter – Update state after returning from second page

I have this code void _setScreen(String identifiers,int id) { if (identifiers == _get_Current_Screen_Identifier()) { Navigator.of(context).pop(); } else { Navigator.of(context).pop(); if (identifiers == 'page1') { Navigator.of(context).push(MaterialPageRoute(builder: (ctx) => const Page1())); } if (identifiers == 'page2') { Navigator.of(context).push(MaterialPageRoute(builder: (ctx) => const Page2()));…

VIEW QUESTION
Back To Top
Search