我如何通过深度链接打开我的Web应用程序链接?

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

我已将我的网站转换为应用程序,并使用[https://app.sarkaribank.com][1]类型的链接加载到Webview中。我想使用深层链接。以下是我的manifest.xml文件。

<activity
            android:name="com.sarkaribank.Activities.BottomActivity"
            android:screenOrientation="portrait"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">

            <intent-filter android:label="SarkariBank">
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:scheme="https"
                    android:host="app.sarkaribank.com"
                    android:pathPrefix="/*.*"/>

            </intent-filter>
        </activity>

我希望只要有人单击任何此类链接,我的应用程序都应打开

https://app.mysitename.com

android deep-linking
1个回答
0
投票
<activity>
    <intent-filter android:autoVerify="true">
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.BROWSABLE"/>
        <category android:name="android.intent.category.DEFAULT"/>
        <data android:scheme="https" android:host="app.sarkaribank.com"/>
        <data android:scheme="http" android:host="app.sarkaribank.com"/>
    </intent-filter>
</activity>

https://developer.android.com/training/app-links/verify-site-associations.html

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