How to Remove Chrome Logo from PWA App Home Screen Link (Android O Preview)

29,361

Solution 1

Above answer is not accurate except for the part that Chrome had the issue of adding Chrome badge to App icon, which is changed in the following updates.

Before getting into whats wrong, here is how web apps are added to home screen.

1) As a simple shortcut(like a bookmark), when the users web browser don't have service worker support(which all recent versions of major browsers have support now), targeted web URL don't have a valid manifest.json and service worker files configured(this can be validated in Application-> Manifest and Service worker tabs in chrome developer tools). In this case, what is added to home screen is not an APK and the bookmark kind of shortcut was represented by a specific version of Chrome with a badge.

2) As an installed APK: When the targeted URL have a valid Manifest.json, service workers and one of supported Chrome version is used, Chrome for Android uses WebAPK to build and sign an .APK file with the package name starting "org.chromium.webapk". Read here for more details on apk generation and PWA distribution here.

Whats not accurate in the above answer/linked article,

1) The chrome badge is not a security measure. Chrome team added the badge for web apps created as bookmark/URL shortcut as it was not using WebApk in some particular version. Badge is a simple visual representation which was later withdrawn.

2) PWA is not abandoned in favor of WebApk. WebApk is part of PWA solution, which compliments PWA by building an installable APK file to get the native app like behavior. WebApk is used to build .apk files by Chrome for Android. Here is official read me file.

So if you are building a PWA, you can still be assured you are not left behind in outdated/abandoned/being abandoned technology. Its still a constantly progressing positively, which got iOS support for service worker in march-2018(iOS 11.3), making it the last major browser vendor aboard PWA game.

Solution 2

Note that if the phone doesn’t have a google play account enabled then all pwa will be installed as a bookmark only. This happened to us using a new phone to test our pwa

Solution 3

This is simple security measure as the PWA is literary opening the browser window and small icon signalizes which browser is used:

Starting with Android Oreo, every shortcut added from Chrome (and potentially other browsers as well, but they are not working now) will have a Chrome badge at the lower right corner of the icon.

Anyway, PWA seems to be abandoned as the new WebAPK feature is significantly more powerful and actually, supports normal icons

With WebAPK enabled, icons are back to normal as we were used in Android before Oreo

Source for quotes: https://medium.com/@firt/android-oreo-takes-a-bite-out-of-progressive-web-apps-30b7e854648f

Solution 4

Sometime we just miss one of the following, which stops us adding it as PWA to mobile:

  1. Use https instead of http (easily get ignored).
  2. One or more service worker.
  3. A manifest file.
Share:
29,361
KVNA
Author by

KVNA

Full stack Javascript developer.

Updated on September 18, 2021

Comments

  • KVNA
    KVNA almost 3 years

    I just updated to Android O Preview and installed a few PWAs. On the home screen a miniature Chrome logo is placed by the icon. This wasn't there before the OS update.

    Ideally, I would like the PWA to look like a regular app on the home screen considering it has service workers enabled.

    Is it possible to remove this with some settings in the app.yaml or manifest.json?

  • Pavel Cernik
    Pavel Cernik about 6 years
    Agreed. Sorry for unclear/misleading answer. Can I somehow switch the "accepted" mark to your post?
  • maxeh
    maxeh about 6 years
    So is it correct that Chrome is the only Webbrowser that supports WebApk because the PWAs of all other Browsers (Firefox, Edge, Opera) contain a small browser logo in the bottom right corner and they are not listed as an installed app in the settings?
  • Anand
    Anand about 6 years
    That's true for now. WebAPK is part of Chrome-Android(not for any other OS which Chrome runs on) opensource project listed here. While there seems to be no official statement from Firefox on supporting it in Android, we can hope to see it sometime. Safari has its own way of adding to home screen in iOS, which don't have any doc on how it does and for now, no other browser in iOS supports add to home screen other than safari. Microsoft has its own way of packing PWA for windows(pwabuilder.com). github.com/brave/browser-android-tabs/tree/master/chrome/….
  • Anand
    Anand about 6 years
    In short, only respective OS authors have defined their way on how they package the PWA for their platform, which make sense. Exposing that to all browser vendor is something we can expect to see in coming months/years.
  • dehamzah
    dehamzah almost 6 years
    how do make my app to webapk? i already check in Application-> Manifest and Service worker tabs in chrome developer tools, my app is pwa, but still have icon android on it when add it to homescreen.
  • Anthony Johnston
    Anthony Johnston over 5 years
    I am still confuddled... under what circumstances is the icon added in android and how/can we avoid it?
  • Anand
    Anand over 5 years
    @Anthony Avoid what ? Please elaborate what you are asking. Icon is added when when user chooses to via add to home screen option.
  • Anand
    Anand over 5 years
    If you are asking how to avoid chrome icon, as long as your went app is fully qualifies PWA to be installed as APK, new versions of chrome won't add that icon. I've tested with chrome version 70 in Android pie . If it's a mere web page, failing to meet key PWA criteria or non PWA, chrome might add chrome icon to indicate it's a web link(depending on chrome version again)
  • Anthony Johnston
    Anthony Johnston over 5 years
    yes, I was asking about the chrome icon added to my own apps icon. I found this too developers.google.com/web/fundamentals/app-install-banners
  • CodemanDoEl
    CodemanDoEl about 4 years
    Oh my god I've been stuck on this for what feels like forever. Tested via new devices here, in stores and on Browserstack all of which were signed out of Google Play for obvious reasons. This answer should be getting more attention, couldn't find this documented anywhere. Thank you!
  • LuBre
    LuBre almost 4 years
    THANKS. This saved my day. Adding another tip: you can login with a Google account, install the PWA and then remove the account from the device. Android will keep the PWA icon as intended. Don't install the PWA before logging in because it will not update the icon, just login, install and delete the account.
  • Siddhant Varma
    Siddhant Varma about 3 years
    My React App was missing service workers which is why I was seeing the chrome icon being added to my app's icon. CRA stopped shipping service workers by default so I had to manually add it to work. create-react-app.dev/docs/making-a-progressive-web-app
  • callmenikk
    callmenikk almost 3 years
    This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review