Falco
(Falco)
November 18, 2017, 2:15pm
4
On the native banner, it will show the native app logo, which is the Discourse one, because it’s pointing to this apps:
The official mobile app for Discourse, the leading open-source platform for building and managing online communities.
With Discourse, people around the world connect, share knowledge, and engage in meaningful conversations. Discourse makes it...
If you have a white-label Discourse app you will want to customize this lines:
Android:
iOS:
}
]
}
if SiteSetting.native_app_install_banner
manifest = manifest.merge({
prefer_related_applications: true,
related_applications: [
{
platform: "play",
id: "com.discourse"
}
]
})
end
manifest
end
end
That said, using the standard Add to HomeScreen on Android will use your custom logo everywhere, just set a good one at the Site Setting large_icon_url
with 512x512 pixels.
6 Likes