How to build app compliant with Google Play 64-bit requirement?

前端 未结 10 1467
情话喂你
情话喂你 2020-12-01 10:46

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?

10条回答
  •  情歌与酒
    2020-12-01 11:12

    Use latest master channel of Flutter. flutter build apk will result into a fat APK containing support for both 32-bit and 64-bit.

    To create 32-bit and 64-bit APK separately, use flutter build apk --split-per-abi command

提交回复
热议问题