I would like to be able to open my application using link provided in SMS. I created following intent filter but it is not clickable in messaging app.
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sampleapp" />
<data android:host="smsverification" />
</intent-filter>
It does not work until I change scheme to http
or https
.
Maybe there might be just error in the sent message?
sampleapp://smsverification/data?value=123&code=abc