blonsky95 / TimeStopperAndroid

0 stars 0 forks source link

Make app receive implicit intents to open media #39

Open blonsky95 opened 3 years ago

blonsky95 commented 3 years ago

Manifest now has this

        <intent-filter tools:ignore="AppLinkUrlError">
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:mimeType="video/*" />
        </intent-filter>

So it shows up to video type data with view action.

In the app code the changes have been: