I want to open my app with a link. The link I want to use, is the link to the google play store. I tried it, but my app doesn't start. Is it possible to do this?
In my manifest I do the following:
<activity android:name="myApp">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" android:host="play.google.com"
android:path="/store/apps/details?id=myApp" />
<data android:scheme="https" android:host="play.google.com"
android:path="/store/apps/details?id=myApp" />
</intent-filter>
</activity>
I tried it with pathPrefix, too.
best regards