How to launch app on click of url in android
Launch app when click on url if app installed on device. if app not installed on device, open playstore. <intent-filter> <data android:scheme="app" /> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> </intent-filter> </activity> Manohar Reddy You have to deep link your app, add following lines in activity (Manifiest.xml) which you want to launch <intent-filter > <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/