Reputation: 15
IMG When adding a website to iOS homescreen it appears "App" in name field, how to change? The Same on Android phones, it always use "app" as icon name.
Upvotes: 0
Views: 77
Reputation: 257
I am assuming you want your website to have a default name when added to the home screen. These solutions should solve your problem.
For iOS:
<meta name="apple-mobile-web-app-title" content="Short name">
For Android:
<meta name="application-name" content="Short name">
You can read further about iOS compatibility here
Upvotes: 1