After I upload the APK to play store I got the following warning. What changes should I make to release an APK build with flutter SDK to meet the 64-bit requirement?
Use latest master channel of Flutter. flutter build apk will result into a fat APK containing support for both 32-bit and 64-bit.
flutter build apk
To create 32-bit and 64-bit APK separately, use flutter build apk --split-per-abi command
flutter build apk --split-per-abi