
startActivity(Intent(Intent.ACTION_VIEW, url.toUri()))dependencies {
// Custom Tabs の依存関係を追加
implementation "androidx.browser:browser:1.5.0"
// ...
}// Custom Tabs で Dynamic Links を開く
CustomTabsIntent.Builder().build().launchUrl(context, url.toUri())