Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use Flutter to develop IOS in Android Studio?

  • Question 1. Can I develop for IOS using flutter only in Android Studio without Xcode on Max OS?

  • Question 2. If 'Question 1' is possible, is there a limit to the functionality?

I do not think it will work on windows OS. When the operating system is Mac OS, is it possible to develop both IOS and Android?

like image 401
kyeonghwan Avatar asked Aug 21 '18 08:08

kyeonghwan


People also ask

Can I make iOS apps with Android Studio Flutter?

Yes, You can develop Flutter apps (both iOS and android) on Android studio which is available for Windows, Linux and macOS, but to distribute iOS apps (created using Flutter), you would need Xcode (which is only available for macOS).

Can I build iOS app in Android Studio?

Once you've made your Android application cross-platform, you can create an iOS application and reuse the shared business logic in it. Create an iOS project in Xcode. Connect the framework to your iOS project.

Can Flutter build iOS app?

Flutter supports iOS 9.0 and later. If your app or plugins include Objective-C or Swift code that makes use of APIs newer than iOS 9, update this setting to the highest required version.

Can Flutter be used for iOS and Android?

Flutter is Google's mobile UI framework that provides a fast and expressive way for developers to build native apps on both iOS & Android, using a single codebase.


1 Answers

Yes, You can develop Flutter apps (both iOS and android) on Android studio which is available for Windows, Linux and macOS, but to distribute iOS apps (created using Flutter), you would need Xcode (which is only available for macOS).

However, if you are on macOS, you can develop and distribute Flutter apps for both iOS and Android.

You can configure any IDE for your Flutter development (see this https://flutter.io/using-ide/) and to release/distribute apps for each platform, you can fall back to Xcode and Android studio.

See more info here: https://flutter.io/setup-macos/

like image 182
Qasim Avatar answered Oct 12 '22 13:10

Qasim