我已将我的网站转换为应用程序,并使用[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>
我希望只要有人单击任何此类链接,我的应用程序都应打开
<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