How to build .apk & .ipa in Flutter, using Android Studio?

9,141

You can use

flutter build apk --release 
flutter install

To build for iOS you need a Mac, because it depends on XCode to compile parts of the application.

Share:
9,141
buzzingsilently
Author by

buzzingsilently

crazy, silent BUZZER, talksToRock, hONEST, TRAVELLER, loud, CODER, understanding, upFront etc etc

Updated on December 05, 2022

Comments

  • buzzingsilently
    buzzingsilently over 1 year

    I am new to Flutter developement. I kept reading, understanding & following Flutter Documentation and has created my first flutter app in Android Studio IDE. It is working fine in android emulators.

    Now I want to test application in iOS simulator but I don't know how to generate build for iOS.

    Is it possible to generate .ipa through Android Studio IDE? If yes then how can I do that? Also I can not build .apk, what are the steps for that?

    Thanks in Advance...