I am developing an Android application with visual studio 2012 and xamarin. I work in a team with different machines. I am running an Android application on a nexus 4 device, and each of them works. When I launch the Android application from another machine, I get an internal error:
Deployment failed due to an internal error: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]
Xamarin.AndroidTools.AndroidDeploymentException: InternalError ---> Mono.AndroidTools.InstallFailedException: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE] bei Mono.AndroidTools.Internal.AdbOutputParsing.CheckInsto.StoiToD String.ndoToiStoiToDooliStoiToIllOndoStoiToIlloDaToLuStoolTnduStoiToIlloDllOndoItoUldoStoiToLuStoiToLuStoluIndoItuli StringiStoiuTouluStoiuToLuStoLuToDuStoItoiudloiStoLoDloiStoiTouli <> c_DisplayClass2a.b_29 (Task 1 t)
bei System.Threading.Tasks.ContinuationTaskFromResultTask1.InnerInvoke () bei System.Threading.Tasks.Task.Execute () --- Ende der internen Ausnahmestapelüberwachung --- bei Xamarin.AndroidTools.AndroidDeploySession.RunLogged (CancellationTam to.arin .AndroidDeploySession.Start (CancellationToken token)
I uninstalled the application on my device, I uninstalled it using the adb shell. Why am I getting this internal error. Any ideas? Should I change my manifest?
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.package.name" android:installLocation="auto" android:versionName="1.9" android:versionCode="10">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="18" />
<application android:debuggable="true" android:label="name" android:icon="@drawable/ic_launcher" android:theme="@style/Theme.Styled"></application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />