My Questions about flutter is ( in android studio IDE):
1- in windows can i download iOS virtual mobile ?
2- flutter in windows can only support code for android apps? , and later the app will convert to iOS app and…etc ? , or How is the operation going?
3- can you in windows code for iOS apps Directly or the code is the same code in windows whatever it’s ios or android
No unles you use a vm
2.no it supports all playforms
No the advantage of using flutte is that it uses a single codebase to deploy on different platforms.
If you are interested in building ios app from windows take a look at https://developer.apple.com/xcode-cloud/
Related
I developed an android application with cordova and I want to convert it to iOS as well. Before starting my project I heard that we are able to convert same project with multiple platforms using cordova. But now I don't know how to convert my project to IOS. Can any one suggest good tutorial OR examples to do it.
And also mention what are all prerequisites to convert my android application to IOS using phone gap.
Suggest me some tutorials with examples.
First, you'll need an actual Mac computer. I suggest a MacBook Air, as they are cheaper than an iPhone. Then purchase an Apple developer license (USD 100/year) if you plan to submit this app to the App Store. Finally, you can migrate your Cordova source code to Xcode to compile the iOS version as explained in this guide:
Build Cordova iOS app from Visual Studio for Windows
The artice explains how to create a new app in Xcode and then export your source code from the Windows PC to the Mac. You can safely ignore all references to Visual Studio if you aren't using it, because it's not needed: Just follow the steps from the For your iOS app section.
Hello everybody I learn phonegap framework and I have few questions. I want to write app for android and ios. In android I write using Java and JavaScript so If I want to run it on other platform (like ios where is object-C) do I have to depend mostly on JS, move that code to MAC and build ios app??? I dont understand how to use my code in android and iOS... Do I need MAC? Do I need to know xcode?
If you are using cordova you have to use javascript/HTML/Jquery/Jquery Mobile/CSS, everything that you would use for the web.
Regarding the compilation if you have to work with IOS, you must have a MAC and then compile the project using xCode, but you do not need to know him well, you just need to know the process of publication.
For Android, you can instead use Ecplise.
If you want to develop cross-platform on an Android IDE, such as Eclipse then there is no need for a Mac & Xcode outside of testing. However, if you're saying that you already use Xcode and write in Obj-C then have a look at this tutorial to get you started:
http://www.raywenderlich.com/30734/phonegap-tutorial-a-cross-platform-zombie-app
Or this for a JQM/Android example:
http://www.gajotres.net/building-a-native-mobile-app-with-phonegap-and-jquery-mobile-1-4/
I developed android apps in phonegap and it is successfully work on all android versions now I want to run my app on iPhone which is ceated in phonegap. I know xcode IDE but its a need Mac System. I don't have mac system. I have some questions...
Q.1) can I develop and create iphone apps on a cloud for phonegap(free and license)?
Q.2) can I create ipa online?
Q.3) can we run Mac in VM, but I dont want to use that(its slow,sluggish and painful to use).
Thanks in advance.
If you want to develop for cross platform that is, Android and iOS, you can try Mobione Studio, which doesn't require Mac, it runs only on Windows.
It's a paid IDE and design studio, which has 15 days trial period.
Also, it's project structure is same as that of Phonegap, as it has Cordova base.
Q1) Yes you can.
Q2) Yes, with Phonegap BUild you get an ipa.
Q3) I don't know about this.
Be aware - like the previous reply said - you'll need to use a service to upload to iTunes if you don't have a Mac.
If you have a Mac (of any kind) you can use that to upload the ipa you build with Phonegap Build.
Say I'm a windows dev, familiar with Visual Studio and with a need of developing an Andriod app. I looked at both the andriod and wp7 getting started guides, but found the windows phone version http://phonegap.com/start/#wp guide much simpler than the Android version (of course, as a windows dev I have already everything installed).
Then comes my question:
Could I develop my app using the Windows Phone environment, and then use the PhoneGap Build services to get the Android version build?
In case, what should I upload to the build service?
Sorry if I got this all wrong, and thanks for any help!
Larsi
The whole idea of phonegap is to develop a multi platform app writing the code once.
So the answer is yes, you should be able to build the app for wp, and then re-use your code for all the other platforms, only if you onlyuse the phonegap API and do all your programming in JS, HTML and CSS.
About what you should upload, I haven't doned it myself, but I think that It would have to be all the JS, HTML and CSS from your app. In android all is located on a folder called "assets".
Good Luck!
I have developed one simple application in phone-gap-android using eclipse and android SDK.
As phone-gap support multi mobile platform , I want to run this application in iPhone also.
How can i achieve it ?
For each platform you want to get a port, you need to create a project in the dedicated environment and compile application as native one for each.
Your created source should be shared between project.
Then for example :
to port your application to iPhone, you need a mac with installed Xcode, iPhone SDK downloaded and phonegap one installed.
In xcode, create a phonegap project, import your sources, compile it, and it works !
Instructions on how to set up Phonegap for each OS can be found here: http://phonegap.com/start
If you are lucky, major modifications will not be needed between the devices.
An alternative would be to try PhoneGap Build: https://build.phonegap.com/