Android 深度链接路径/路径模式

问题描述 投票:0回答:1

如果我的网址看起来像这样 https://somesite.com//#/?token=H41SB9SN

我应该在 AndroidManifest 中使用什么路径模式或路径,以便当用户单击这样的链接时,我的应用程序将打开?

android url uri deep-linking
1个回答
1
投票

应该是

          <data android:scheme="https"
          android:host="somesite.com"
          android:pathPattern="/#/?token=" />
© www.soinside.com 2019 - 2024. All rights reserved.