Abhishek
Abhishek

Reputation: 79

How to change the name of the .apk created using Xamarin Forms?

I am creating an android app using xamarin forms. When I crate APK, its name looks like com.companyname.projectname.apk

I want to have it like XYZ.ABC.projectname.apk

How to do this ??? Please help. I am new to Xamarin.

Upvotes: 2

Views: 1802

Answers (1)

Supun Liyanaarachchi
Supun Liyanaarachchi

Reputation: 549

1st method

  • right click on your android project (not pcl or .net)
  • select properties
  • go to android manifest
  • there is a text box for Application name
  • enter your app name

enter image description here

2nd method

Change label name of your main activity enter image description here

3nd method

Remove the Label of the MainActivity and add the name in the Manifest.xml via Code

enter image description here

Read this for more Xamarin.Forms change Android application name

Upvotes: 4

Related Questions