How to test my application made in Xamarin in the Visual Studio emulator?

0

I made a mobile android app using Xamarin and tested it normally, I made some modifications and when I was compiling again, the visual studio emulator remained with the old version, making me unable to test my application. With this I uninstalled my application from the emulator, because I thought when I was compiling it, it would come back, but it did not come back. Now I do not even have the old version.

Is this a bug? How do I move my application to the visual studio emulator?

    
asked by anonymous 11.08.2017 / 02:17

1 answer

0

Yes, this is a bug, I was using the Android Marshmallow 6.0 k SDK and I solved it by installing a different one ( Android Nougat 7.1 ).

To change, just follow the steps:

  • In Visual Studio go to > Ferramentas > Android > Android SDK Manager

  • Install the SDK that you want.

  • Go to > Ferramentas > Android > Gerenciador de Emulador para Android

  • Create a new ADB, with the SDK you just added.

  • Now, to debug the program, use the ADB you created.

        
    11.08.2017 / 04:04