I develop a android app with visual studio 2012 and xamarin. I worke in a team with different machines. I start my android app on a nexus 4 device and everythink works. When I start my android app from a other machine, I get an internal error:
Deployment failed because of 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.CheckInstallSuccess(String output, String packageName)
bei Mono.AndroidTools.AndroidDevice.<>c_DisplayClass2a.b_29(Task1 t)
bei System.Threading.Tasks.ContinuationTaskFromResultTask
1.InnerInvoke()
bei System.Threading.Tasks.Task.Execute()
--- Ende der internen Ausnahmestapelüberwachung ---
bei Xamarin.AndroidTools.AndroidDeploySession.RunLogged(CancellationToken token)
bei Xamarin.AndroidTools.AndroidDeploySession.Start(CancellationToken token)
I have deinstalled the app on my device, I deinstalled it with adb shell. Why I get this internal error. Any ideas? Have I to 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" />