I want to check if app is installed then open app and if not then play store. I tried using my app's play store link but did not work
<intent-filter
android:autoVerify="true"
android:label="Notification Log">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="play.google.com"
android:path="/store/apps/details?id=com.appnotification.notificationhistorylog"
android:scheme="http" />
</intent-filter>
Can anyone help me with this