单击邮件的Deeplink时,创建了两个应用程序实例

发布于 2025-01-20 17:16:03 字数 1608 浏览 1 评论 0原文

我正在从 X 活动导航到电子邮件应用程序,我从后端收到一封电子邮件。 在该电子邮件中,我们有链接,单击该链接后,它将导航到应用Y活动。 在此过程中,创建了两个应用程序实例。

导航到电子邮件应用程序活动和从电子邮件应用程序活动导航并不相同。

 <activity
            android:name=".framework.deeplink.DeepLinkActivity"
            android:exported="true"
            android:noHistory="true">

            <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:scheme="https" android:host="medicineprod.com" android:pathPrefix="/redirectpath" />
            </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:scheme="https" android:host="medicinetest.com" android:pathPrefix="/redirectpath" />
            </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:scheme="medicineapp"/>
            </intent-filter>

        </activity>

I'm navigating to the email app from X activity, I am getting an email from the backend.
On that email we have the link, once click on that link it is navigated to app Y activity.
In that process, two app instances are created.

navigating to email app activity and navigating from email app activity both are not the same.

 <activity
            android:name=".framework.deeplink.DeepLinkActivity"
            android:exported="true"
            android:noHistory="true">

            <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:scheme="https" android:host="medicineprod.com" android:pathPrefix="/redirectpath" />
            </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:scheme="https" android:host="medicinetest.com" android:pathPrefix="/redirectpath" />
            </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:scheme="medicineapp"/>
            </intent-filter>

        </activity>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文