单击邮件的Deeplink时,创建了两个应用程序实例
我正在从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论