1

Firebase 动态链接处理错误:单击动态链接时,它正在打开启动器活动,而不是带有意图过滤器 (DynamicLinkHandlerActivity) 的活动。

启动器活动:

<activity android:name=".SplashScreen"
    android:screenOrientation="portrait"
    android:theme="@style/AppTheme.NoActionBar"> 

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>

</activity>

动态链接处理程序:

<activity android:name=".LinkHandler" > 

    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
            android:host="dynamic.link.code"
            android:pathPattern="/?link"
            android:scheme="https" />

    </intent-filter>

    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
            android:host="dynamic.link.code"
            android:pathPattern="/?link"
            android:scheme="http" />

    </intent-filter>

</activity>
4

1 回答 1

0

您应该在清单中使用链接值的意图过滤器,而不是动态链接。

例如动态链接:https ://appcode.app.goo.gl/?link=https://example.com& ...

您的解决活动意图过滤器应该是

<data android:scheme="https" android:host="example.com"/>

于 2017-07-21T21:50:20.003 回答