How can I use the "android meteorological device" for my meteorite server?

If I use the command:

meteor run android-device -p 192.168.232.142:3000

      

I have the following error:

Can't listen on host 192.168.232.142 (EADDRNOTAVAIL from listen).

      

This logic, since 192.168.232.142 is not my local IP but the IP of my Meteor remote development server. On the other hand, the same command on my remote Meteor dev server won't be helpful as I can't connect my android device to it. (With USB adapter).

So how can I install the Android web app on my locally connected Android device pointing to the remote Meteor server?

Thank,

+3


source to share


1 answer


This command works fine:



meteor run android-device --mobile-server http://remote_server.meteor.com

      

+2


source







All Articles