Open MvvmCross app via link with data
问题 In native Android apps you can define an intent-filter for an activity in the Manifest file which can open the app when a specific link (e.g. myprotocol://mysite.com/action/data ) is visited from a website or email. <intent-filter> <data android:scheme="myprotocol" android:host="mysite.com"/> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> </intent-filter> When I try