Handle Dynalist link in android app

I notice that in android, if a link is a YouTube video, it will be handled in the YouTube app. Can we do this in Dynalist app?

If a link is a dynalist list, can we use the native android app to handle it?

6 Likes

On our todo list for mobile app!

There are a few posts about adding URL scheme for the iOS app but we need it for the Android app too. Good point.

3 Likes

Is this question what is meant by this Trello card: https://trello.com/c/7tU0Lgt3

It would be helpful if you either put descriptions in Trello and/or linked to forum threads. I’m really unclear what the card means.

1 Like

@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

Any updates on this? Please. :slight_smile:

2 Likes