I need to open the my application from browser when some pattern matching url come,I have implement using Intercepting links from the browser to open my Android app .It is used for url only can it possible to open the app.I want to app when browser find the string like appname://id=102.
Thank you.
EDIT: please check out this code that i have use
<intent-filter >
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="appname"
/>
</intent-filter>