Problem when running Android app in Xamarin Studio

2

Every time I try to run an Android app in Xamarin Studio (Mac), it stops, after the emulator is loaded. I did not modify any of the source code that comes by default, and I use Xamarin's default emulator.

This warning appears while the emulator is running:

  

Warning: No -tsa or -tsacert is provided and this jar is not   timestamped. Without a timestamp, users may not be able to validate   this jar after the signer certificate's expiration date (2046-11-18)   or after any future revocation date.

Does anyone know what the reason may be?

    
asked by Juan Manuel Gentili 29.12.2016 в 16:40
source

1 answer

0

The message indicates the warning and the solution.:

  

Warning: No -tsa or -tsacert is provided and this jar is not   timestamped. Without a timestamp, users may not be able to validate   this jar after the signer certificate's expiration date (2046-11-18)   or after any future revocation date.

Your application requires a certificate which is not accepted by date, you have to configure your system with the correct date and time.

The error shown is:

  

Unable to get provider mono.MonoRuntimeProvider: java.lang.RuntimeException: Unable to find application Mono.Android.Platform.ApiLevel_24 or Xamarin.Android.Platform

You have to install Android 7.0 (API 24)

    
answered by 29.12.2016 в 18:24