I am wondering if the Windows version of Meteor JS supports developing and running iOS and/or Android apps.
I am hoping it at least supports Android.
I am wondering if the Windows version of Meteor JS supports developing and running iOS and/or Android apps.
I am hoping it at least supports Android.
Februar 2016 - it now works with Version 1.3-cordova-beta.5.
You manually have to install
Try the release by running meteor update --release 1.3-cordova-beta.5
in your app directory.
Afterwards meteor run android-device
works just fine
see some more details here https://github.com/meteor/meteor/issues/6050
From today it now supports Android, https://github.com/meteor/meteor/issues/6050 It got developed by Sedouard and included inside Meteor 1.3 beta release
I just attempted to use the instructions here on windows and it told me.
This command is not yet available on windows.
You can follow @snez's advice from this question here. Can Meteor be used with PhoneGap?
You could try to experiment with the tutorial version which seems to work in mobile.
meteor create --example localmarket
In December 2015, the situation is still the same. I had a hard time today deploying my Meteor app on Android. I wrote down my findings, I hope it helps you too. It's here: https://geekycarrot.blogspot.com/2015/12/deploying-meteor-app-on-android.html
In a nutshell: It is possible to deploy for Windows, but it's tricky. You need a Linux operating system, at least in a virtual box. (Docker or Vagrant helps you with that. I recommend Docker.) You need to install an Android SDK on the Linux system. Building the app from the Linux console can be done by the steps I described. With a bit of creativity, the deployment process can be simplified to one click with a short Linux-side and a Windows-side script.
I have not found a solution for debugging though.
I know it doesn't support iOS, but that is a limitation that the Apple sdk enforces (can only run the sdk on osx). I believe Android can run on Windows, but they haven't released it for Windows. See this link. https://github.com/meteor/meteor/wiki/Supported-Platforms
Meteor Windows still not support both Android or iOs yet, it will come soon.
Update news at Meteor roadmap here https://trello.com/c/ZMvnfMfI/11-official-windows-support
This link solves the add platform challenge on windows. It shows how you can get "meteor add-platform" working with meteor 1.3+ on windows.