Hi FlutterFlow Community!
I'm encountering an error while trying to deploy my app to the Google Play Store. When building the AAB, I'm getting the following error:
```
FAILURE: Build failed with an exception.
Execution failed for task ':app:minifyReleaseWithR8'
> Compilation failed to complete: androidx.media3.exoplayer.dash.manifest.DashManifestParser
```
The error seems to be related to R8 code optimization with the media3-exoplayer-dash library. The full error message suggests using the --no-shrink flag, but I'm not sure how to implement this in FlutterFlow's deployment process.
Here's the complete error log:
```
BUILD FAILED in 5m 5s
Running Gradle task 'bundleRelease'...
[!] The shrinker may have failed to optimize the Java bytecode.
To disable the shrinker, pass the --no-shrink flag to this command.
```
I'm using a custom widget that implements video playback functionality. Has anyone encountered this issue before? Any suggestions on how to resolve this in the FlutterFlow environment would be greatly appreciated.
Thanks in advance for your help!
#FlutterFlowHelp #BuildError #AndroidDeployment