Files don't show up in release mode
When I build a release APK, files dont show up anymore.
I have been also faced this issue in release mode, because I forget to add permissions in the manifest file
In my case I was using code shrinking. That messed up the library
try this https://stackoverflow.com/a/61539203/10837446
In my case I was using code shrinking. That messed up the library
How did you solve it? , I'm using proguard & minify.
I used this command "flutter build apk --no-shrink" to disable Google's R8 shrinker
no working :(