0

The internal name of many Andoird apps is of the format com.microsoft.skydrive. I would like to name my app following that format, but am unsure as to how to do that without changing the user-visible name.

So how do I change the app's internal name without changing the visible name? (I'm using VS2015 Xamarin.Forms)

ispiro
  • 26,556
  • 38
  • 136
  • 291

1 Answers1

0

Are you referring to Package name?

For changing Package name right click module you want to change then select Refactor then click on rename.

More Refer Here

If you want change App name(Visible to public),

change the android:label field in your application code in AndroidManifest.xml

Fajar Khan
  • 952
  • 1
  • 12
  • 30