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

后端 未结 11 1128
自闭症患者
自闭症患者 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:29

    Android(After adding release build type run below command which will generate release apk with below version)

    flutter build apk --build-name=1.0.1 --build-number=1
    

    iOS

    flutter build ios --release
    

    For a detail explanation read the below article.

    https://medium.com/@ralphbergmann/versioning-with-flutter-299869e68af4

提交回复
热议问题