When trying to deploy my app to the Android device I am getting the following error:
Deployment failed because of an internal error: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE]
I am aware of this question but the app is not installed. …
I need to make a decision between using Xamarin.Forms vs Xamarin native to develop an app.
I want to go with Xamarin.Forms as UI code will be shared as well.
So what are the technical positives and negatives …
I have the following method in an Xamarin.Forms.ContentPage wired to a button click event
public class LoginPage : ContentPage
{
private Button _loginButton = null;
private Entry _PasswordInput = null;
private Entry _UsernameInput = null;
public LoginPage()
{
_UsernameInput = new Entry { Placeholder = "Username" };
_PasswordInput = …