We finally have support 🎉
**Note:** This API is supported from Chrome version 137.0.7141.0.
```
// In your activity
String url = "https://developers.android.com";
CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder()
.setEphemeralBrowsingEnabled(true)
.build();
customTabsIntent.launchUrl(MainActivity.this, Uri.parse(url));
```
Reference: <https://developer.chrome.com/docs/android/custom-tabs/guide-ephemeral-tab>
We finally have support 🎉
**Note:** This API is supported from Chrome version 137.0.7141.0.
```
// In your activity
String url = "https://developers.android.com";
CustomTabsIntent customTabsIntent = new CustomTabsIntent.Builder()
.setEphemeralBrowsingEnabled(true)
.build();
customTabsIntent.launchUrl(MainActivity.this, Uri.parse(url));
```
Reference: https://developer.chrome.com/docs/android/custom-tabs/guide-ephemeral-tab