Android应用程序Deeplink跳过后端响应

时间:2018-07-29 10:20:46

标签: java android android-manifest deep-linking

在我的应用程序中,我设法通过在gmail上发送的激活URL打开了该应用程序,但是未调用与此操作相对应的方法(在后端),因此用户仍处于非活动状态。应用程序,但仍然得到后端响应?

这是我的清单代码:

    android:name=".Activities.LoginActivity"
        android:configChanges="orientation"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <data android:scheme="http"  android:host="MY.SERVER.IP" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
    </activity>

0 个答案:

没有答案