Currently, in my application, I have my own URI scheme for detecting when a user clicks on a specific URI.
The code used in the Manifest file is as follows:
<intent-filter> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" android:host="com.test/> <action android:name="android.intent.action.VIEW" /> </intent-filter>
If a user clicks on a link that has its own user URI in the browser, it now displays options for the user to select my application.
But how to transfer this data, which is a link to my application at startup for further processing? Basically, how do I transfer data from the browser to my application?
Thanks at Advance
android android-intent android-manifest
aandroidtest
source share