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

前端 未结 10 1464
情话喂你
情话喂你 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 10:56

    Flutter 1.5.4-hotfix.2 appbundle currently targets android-arm which builds only 32bit native code (flutter build appbundle -h). To change this run flutter build appbundle --target-platform=android-arm64 to change the default target.

提交回复
热议问题