Share file url on Android with IntentLauncherAndroid

Share provides this file sharing functionality on iOS, but the url prop does not work for Android.

How can I achieve this on Android with IntentLauncherAndroid or other means?

2 Likes

@schazers any idea?

Currently there is no way to pass the file uri to the IntentLauncherAndroid. See this issue. A feature request has already been created, here, but unfortunately no progress has been made yet.

Once the feature is implemented you can then start an activity with action ACTION_VIEW

IntentLauncherAndroid.startActivityAsync('android.intent.action.VIEW', .....);

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.