So I'm making mobile apps and want to do links to activate things in both iOS and Android using the same URL. I know how to do this already. my intent on android is something like :
<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:host="activity.action android:scheme="myapp"/>
</intent-filter>
My problem is when I go to test this and want to do a hyperlink in an email myapp://activity.action is not recognized as a url in gmail on android and displays as plain text. is there a way to fix this? how do i get non standard schema recognized by gmail as a link?