• Resolved obarayese

    (@obarayese)


    Hello, I uploaded the PWA APK version to playstore with PWA2APK but address bar still show. I wish to update the app on the playstore with a new version without address bar.
    How can I do that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Weston Ruter

    (@westonruter)

    Try adding this to a custom plugin or your custom theme’s functions.php:

    add_filter( 'web_app_manifest', function( $manifest ) {
        $manifest['display'] = 'standalone';
        return $manifest;
    } );
    Plugin Author Weston Ruter

    (@westonruter)

    The default display in the manifest is minimal-ui.

    Thread Starter obarayese

    (@obarayese)

    Should I need to upload another APK to playstore, because the bar is still showing on the App

    Plugin Author Weston Ruter

    (@westonruter)

    Sorry, I don’t know anything about APKs or uploading to the Play store.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How Can I Disable Address bar from thw PWA shortcut’ is closed to new replies.