Steps to follow :- 1. Define an activity in android manifest file with below intent filters :- <activity android:name=".LaunchActivityFromBrowser" android:configChanges="orientation|keyboardHidden|fontScale|locale|layoutDirection|screenSize|screenLayout|mnc|mcc|navigation" android:launchMode="singleTask" android:screenOrientation="portrait" android:theme="@android:style/Theme.Black.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> ...
This blog is for ANDROID developers which contains information about development, resolutions of common issues and much more about ANDROID...