I am developing a Xamarin forms application with a single page. When I try to install the application on Samsung Galaxy S7 it installed good, but the open option is disabled and it didn't created an icon in the list of applications. Even in the emulator the application is not showing up.
In the .Droid project this is my create.
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
global::Xamarin.Forms.Forms.Init (this, bundle);
LoadApplication (new App ());
}
In the PCL project this is the constructor in my App class. And the scorePage is just a simple content page.
public App ()
{
MainPage = new ScorePage();
}