I want to open my Application Android (Nativescript) from a link in email, that is Click here to reset password
.so when I click the link from my mobile browser I need the app Launched.
Is there any solution for this?
Update code:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
<intent-filter android:autoVarify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="xx.xxx.xx.xx" android:port="xxxx" android:path="reset">
</data>
</intent-filter>
I change link to
http://mydomain.tk/v1/reset/1234567891011121314
<data android:scheme="http" android:host="mydomain.tk" android:path="/v1/reset">
doesn't work again.