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

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

    1. cd $(PROJECT FOLDER PATH)

    // For android

    1. sudo $(FLUTTER SDK PATH TILL bin)/flutter build apk --release

    // For iOS

    1. sudo $(FLUTTER SDK PATH TILL bin)/flutter build ios --release

提交回复
热议问题