2016-10-17 87 views
2

如何在Windows中使用Visual Studio模擬器運行NativeScript應用程序? 試圖讓這個項目:如何在Windows中使用Visual Studio模擬器運行NativeScript應用程序?

https://github.com/avatsaev/nativescript-master-detail-angular2

運行時,在Windows中運行10 64位的Visual Studio模擬器,但總是Android模擬器推出來代替:

這是我ADB設備:

List of devices attached 
169.254.138.177:5555 device 

tns livesync android --emulator --watch

也試過

tns livesync 169.254.138.177:5555 --emulator --watch

不幸運!

問候

肖恩

+0

這是我的詳細答案https://stackoverflow.com/questions/46774657/nativescript-project-running-with-visual-studio-emulator/47830796#47830796♥ –

回答

4

找到了答案

tns run android --device 169.254.138.177:5555 

,你從獲取設備:

adb devices 

享受!

+2

hi @ born2net,你也可以用'tns device '列出可用的仿真器和設備 –

+0

tx!欣賞反饋 – born2net

3

如果仿真程序已經在運行,並且顯示爲adb devices - 您可以運行tns run android。這將構建並部署在所有可見設備上。這同樣適用於tns livesync android

相關問題