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

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

    For Android, an APK is generated every time you build the app, e.g. with flutter run. You will find that in your project folder under /build/app/outputs/apk/debug/app-debug.apk.

提交回复
热议问题