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

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

    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. If you want a release APK, have a look at the docs.

    I'm not an iOS person, so I'm not sure an IPA is generated during development as in android. But looking at these docs it seems you can follow the standard steps on xcode to get it, as shown here.

提交回复
热议问题