4

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.

user1435853
  • 633
  • 2
  • 8
  • 18

7 Answers7

11

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

fordareh
  • 2,923
  • 2
  • 26
  • 39
daKmoR
  • 1,774
  • 12
  • 24
  • Hi, i've done it but when i try meteor run android-device with some server it says "Please add the Android platform to your project first." . – Shahar Lahav Mar 15 '16 at 00:12
  • You still have to run `meteor add-platform android` beforehand. See official tutorial here https://www.meteor.com/tutorials/blaze/running-on-mobile – daKmoR Mar 16 '16 at 19:41
2

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

Thibaud Lacan
  • 346
  • 1
  • 6
  • 13
1

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
Community
  • 1
  • 1
Cody Higdem
  • 43
  • 1
  • 9
1

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.

David Veszelovszki
  • 2,574
  • 1
  • 24
  • 23
0

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

JoshJoe
  • 1,482
  • 2
  • 17
  • 35
  • The link only describes running android on Linux and Mac. Will there soon be an official support of Android on Windows? – user1435853 Apr 04 '15 at 01:11
0

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

Cloud Le
  • 41
  • 1
  • 4
0

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.

nsj
  • 45
  • 8
  • Hi, a link to a potential solution is always welcome, but please [add context around the link](http://meta.stackoverflow.com/a/8259/169503) so your fellow users will have some idea what it is and why it’s there. Always quote the most relevant part of an important link, in case the target site is unreachable or goes permanently offline. Take into account that being *barely more than a link to an external site* is a possible reason as to [Why and how are some answers deleted?](http://stackoverflow.com/help/deleted-answers) – Michael Dodd Jan 28 '17 at 12:05