I am exploring the Trusted Web Activity concepts and trying to launch it like this -
final CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
final CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.intent.putExtra(TrustedWebUtils.EXTRA_LAUNCH_AS_TRUSTED_WEB_ACTIVITY, true);
customTabsIntent.launchUrl(activity, Uri.parse(wrappedTargetUrl));
I used google's asset link generator here and tested it for the domain. It shows successful linking. Also, I am using the correct app signing key from Playstore. Still, it is not hiding the URL bar for me. I have looked and tried all the available options on StackOverflow and still no luck.
To remove the Url bar of a Trusted Web Activity it requires an association between the Android application and the website. The association must be established in both ways, linking from the Application to the Website and from the Website to the Application.
Establish an association from Application to the Website
1.Add
asset_statements
Stringapp>res>values>strings.xml
like below and change the contents for the site attribute to match the schema and domain opened by the Trusted Web Activity:2.Add the above
asset_statements
into your AndroidManifest.xml asmeta-data
underapplication
tag like below and set the correctdata scheme and host
in your Launcher Activity:Establish an association from Website to the Application
You have to upload an
assetlinks.json
file into your website under the path:https://my.site.com/.well-known/assetlinks.json
where assetlinks.json should look like this:From the above file you have to set the correct Package Name and the correct SHA-256 Fingerprint (Keystore signature Hash).
There is an easy way to generate the above
assetlinks.json file
and the above hash from Android Studio. You have to go to Android StudioTools > App Links Assistant
and click theOpen Digital Asset Links File Generator
and add your site domain, the application package name and select your release keystore file like below and clickGenerate Digital Asset Links file
Button to generate theassetlinks.json
which is ready to be uploaded to the site. There is also a very helpful link which describes the association Associate your app with your websiteTo verify that the link is correct there is a
Link and Verify
Button to verify that the association from Website to Application is correct like in the below image sample:After the above steps if the Sha256 which was uploaded to the site was for Release keystore you have to generate a release apk file which now if opened you should see that the Header Url Bar was removed successfully. I have tested the above steps and it works as expected.
Note: In case you have opted into having Google Play sign your releases with a key they generated, you simply need to copy the App signing key certificate SHA-256 fingerprint under the Google Play Console -> Setup -> App Integrity and put it in the assetlinks.json file.