Naveed Hematmal
Naveed Hematmal

Reputation: 383

Two apps for the same Xamarin.Forms project deploy to android

When I deploy the Xamarin.Forms app to my physical device or emulator, if it is from Visual Studio, it shows two apps, one with .android extension. When I deploy it from the Microsoft App center, It deploys one apk file and installs two apps. See the below image.
enter image description here
It happened after I added the app icon and splash activity.

Upvotes: 0

Views: 570

Answers (1)

adamm
adamm

Reputation: 919

Since you added SplashActivity.cs, it has MainLauncher = true, so now you need to set MainLauncher = false in your MainActivity.cs

Upvotes: 3

Related Questions