Reputation: 81
This issue is not related to pwabuilder -> Building Android PWA APP but sort some issue after it is built.
OK here is the working fine example.
Now I go to PWA Builder for build my android app to publish on play store
Is there a way around to fix this behaviour?
NOTE From PWA Builder I build app for Microsoft Store and in my initial testing I found that it is working fine as I want it to be. (2 & 3 points above from Add to home screen working fine)
Any help for android issue will be much appreciated. thanks.
Upvotes: 1
Views: 1734
Reputation: 81
Ok finally I got this today.
This post says how to overcome this.
Solve: Remove the URL bar Trusted Web Activities(PWA APK) require an association between the Android application and the website to be established to remove the URL bar.
Follow the below steps to remove bar:
For more information or verify assetlinks.json (content below) values for this Click Here.
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "android package id",
"sha256_cert_fingerprints": ["Upload key certificate -> SHA-256 certificate fingerprint"]
}
}]
After all these steps my Android App is now not showing Top Address Bar.
Upvotes: 3