How to get .apk and .ipa file from flutter?

后端 未结 11 1068
自闭症患者
自闭症患者 2020-12-12 18:51

I am new to flutter programming and I\'ve created a demo app, its running fine on both android and iOS devices. I want to see .apk and .ipa file in flutter. Can anyone help

11条回答
  •  抹茶落季
    2020-12-12 19:31

    For apk, you can use flutter build apk --release to get the release version of your apk on either windows/macOS.

    For ipa, you have to use flutter build ios --release to get the release version of your apk on macOS.

    Note: You can get a ipa on macOS only.

提交回复
热议问题