0

I'm trying to configure HotReload 1.4.15 in VS 2017 for execute in genymotion emulator (Win 10). Xamarin Live Reload - Preview installed. Variable path configured for all users:

enter image description here

In app.xaml.cs

        public App()
        {
            InitializeComponent();
#if DEBUG
            HotReloader.Current.Run(this);
#endif
            MainPage = new MainPage();
        }

// second try

    public App()
    {
        InitializeComponent();
#if DEBUG
        HotReloader.Current.Run(this, new HotReloader.Configuration
        {
            DeviceUrlPort = 15000
        });
        //HotReloader.Current.Run(this);
#endif
        MainPage = new MainPage();
    }

enter image description here

VS -> TOOLS -> ANDROID -> PROMPT ANDROID adb forward tcp:15000 tcp:15000 enter image description here

without success...

Whats can I missing? No exception, no error message, nothing. Thanks in advance!

Diego Venâncio
  • 5,698
  • 2
  • 49
  • 68

0 Answers0