Firebase动态链接未在Android中打开我的应用程序作为新的单独应用程序

时间:2017-08-21 07:11:43

标签: android firebase deep-linking firebase-dynamic-links deeplink

我在我的示例Android应用程序

中配置了firebase动态链接
        <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" /> 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <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:host="example.com"
                    android:scheme="https"/>
            </intent-filter> 
        </activity>

它工作正常当我点击动态链接时,唯一的问题是它在相同的链接共享应用程序中打开,如WhatsUp,Messages。

当我点击Whatsup或消息应用中的动态链接时,如何单独打开我的应用。

请参阅以下截图

  1. 通过安装了我的深层链接应用程序的Whatsup打开动态链接,它在同一个Whatsup窗口中打开我的深层链接应用程序。
  2. enter image description here

    1. 通过Whatsup打开动态链接而不使用我的深层链接应用程序,在这种情况下,它作为单独的PlayStore应用程序打开,如何?
    2. enter image description here

0 个答案:

没有答案