Reputation: 3142
How can I open an existing Flutter project made by Android Studio on Mac-Os to export ipa version of app? Can it be done with Mac-Os version of Android Studio or I have to do it with X-Code? How? Thanks in Advance
Upvotes: 1
Views: 15123
Reputation: 3142
I could finally do that by accomplishing the following steps:
flutter packages get
(Connection to Flutter repositories must be available) flutter build ios --release
as @Günter Zöchbauer truly commented Upvotes: 4
Reputation: 751
Connection to physical iPhone device is not necessary. Run any sample project in xcode. Start a Simulator. (Only One simulator preferrably).
follow steps on flutter.dev to install flutter. Above steps will only work from terminal if flutter doctor(any flutter command) is recognized
Upvotes: 1
Reputation: 657466
You can do it in XCode.
Ensure you run flutter build ios --release
before you do.
Upvotes: 2