Android Question Deeplink opens b4a app inside anothother App

Blueforcer

Well-Known Member
Licensed User
Longtime User
if created a deeplink to open my app by URL

B4X:
AddActivityText("main",
<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT"></category>
    <category android:name="android.intent.category.BROWSABLE"></category>
       <data android:scheme="https" />
    <data android:host="shorten.blueforcer.de" />
</intent-filter> )

Its working, but in taskmanager it doesnt look like a new instance. For example i click the link in telegram, it opens my app, but taskmanager shows it as telegram.
So im unable to swtich back to telegram, without closing my app.



i found this hint:

but i dont know how to change the Launchmode it in b4a
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…