thatguy
thatguy

Reputation: 15

When adding a website to iOS homescreen it appears "App" in name field, how to change?

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

Answers (1)

elismm
elismm

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

Related Questions