深层链接意图无法处理

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

我的清单:

<activity
            android:name="com.dev.ui.MainActivity"
            android:screenOrientation="portrait"
            android:exported="false"
            android:windowSoftInputMode="adjustNothing"
            android:launchMode="singleTask"
            android:theme="@style/Theme.Light" >

            <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:scheme="https"
                    android:host="www.dev.com"
                    android:pathPrefix="/links" />
            </intent-filter>

        </activity>

我在MainActivity上启动我的应用程序(名义模式)。>>

我从电子邮件草稿中(当然是在我的手机上)单击此链接:https://www.dev.com/links/123

Web导航器直接启动,但我的应用程序从未处理此链接...

你们有调查方法吗?

我的清单:

android deep-linking
1个回答
0
投票

请尝试这个

© www.soinside.com 2019 - 2024. All rights reserved.