Android应用程序链接不工作且未出现在adb dumpsys中

Android应用程序链接不工作且未出现在adb dumpsys中,android,reactjs,hyperlink,applinks,android-app-links,Android,Reactjs,Hyperlink,Applinks,Android App Links,我正在尝试为我的添加设置android应用程序链接,但它们不起作用。 我修改了manifest.xaml(android/app/src/main),添加了: <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="and

我正在尝试为我的添加设置android应用程序链接,但它们不起作用。 我修改了manifest.xaml(android/app/src/main),添加了:

<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="http" android:host="example.com" />
    <data android:scheme="https" />
  </intent-filter>

,它说没有错误,但当我用
adb shell am start-a android.intent.action.VIEW-d打开它时,我的应用程序链接不起作用。”https://example.com“
当我试图找到带有
adb shell dumpsys package domain preferred apps
的应用链接时,它说它不存在。 我在AssetLink.json上验证了我的sha256密钥和我的应用程序包。。。 有人能帮我吗:)