当我从浏览器点击链接时,Deep Linking无法在我的本机应用程序(Android)中运行。它在亚洲开发银行工作。
的AndroidManifest.xml:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:launchMode="singleTop"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter android:label="Cashare" android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="https"
android:host="casharetesting.badrit.com" android:pathPrefix="/"/>
</intent-filter>
</activity>
在浏览器中点击此url无法正常工作,但它正在终端的adb中运行:
adb shell am start -W -a android.intent.action.VIEW -d " https://casharetesting.badrit.com/cashare/group_invitations/KUHNpepNeAfJc2G-nJQo"