Note that there are some explanatory texts on larger screens.

plurals
  1. POWhen im running my mono android application cant run the emulator and getting deployment errors
    text
    copied!<pre><code>using Android.Content; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; using Android.Media; namespace MoviePlayer { [Activity(Label = "MoviePlayer", MainLauncher = true, Icon = "@drawable/icon")] public class Activity1 : Activity { int count = 1; MediaPlayer mp; protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Main); mp = new MediaPlayer(); mp.Prepare(); mp.SetDataSource("F:\\DCIM\\100MEDIA\\VIDEO0034.3gp"); mp.Start(); } } } </code></pre> <p>When im running the application i see a window of Select Device I see my android there listed but its offline like i cant select it maybe czu um using evaluation version of mono ?</p> <p>So instead im trying to select Start Emulator Image and there i see two images i created. Both of 2.2 android I select one of them double click and nothing happened. Im back to first window where my android is offline in the list.</p> <p>If i select Cancel im getting error say: There were deployment errors. If i select not to continue NO its exiting the debug and stop running. If i select YES to continue im getting error say:</p> <p>Build Failed</p> <p>MonoDroid does not support running the previous version. please ensure your solution builds before running or debugging it.</p> <p>So i tried to make: Build Solution and Rebuild Solution i didnt got any errors but it didnt solve this deployment errrors message.</p> <p>In other words how do i run and use the emulator ?! I will not buy the program for now its 399$</p> <p>Thanks.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload