With this code i can open my app from a url (from whatsapp for example), but the app is open in whatsapp and not as own app.
If i open the Taskmanager i see, my app is in whatsapp, how can i open my app as its own task?
If i open the Taskmanager i see, my app is in whatsapp, how can i open my app as its own task?
B4X:
AddActivityText("main",
<intent-filter>
<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="share.myurl.net" />
</intent-filter> )
Last edited: