App / Deep Linking无法在浏览器Android中运行

时间:2017-05-29 13:30:58

标签: android react-native react-native-android

当我从浏览器点击链接时,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"

0 个答案:

没有答案