Android: Flutter package flutter play Release or Debug package
Step 1: Sign
Set the signature in build.gradle under the Android project directory just like setting the Android signature.
Step 2: Execute the package command
Execute the following command under the FLUTTER project directory
The Release package:
flutter build apk --release
flutter build apk
Copy the code
The Debug package:
flutter build apk --debug
Copy the code