Handle Dynalist link in android app

@Erica Would be really cool if we could get this!
In terms of catching the intent it is really simple to implement

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <!-- Include the host attribute if you want your app to respond
         only to URLs with your app's domain. -->
    <data android:scheme="http" android:host="www.example.com" />
    <category android:name="android.intent.category.DEFAULT" />
    <!-- The BROWSABLE category is required to get links from web pages. -->
    <category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
2 Likes