Reputation: 383
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.
It happened after I added the app icon and splash activity.
Upvotes: 0
Views: 570
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