Custom Activity Action to Open PDF

Please provide the following:

  1. SDK Version: 43
  2. Platforms(Android/iOS/web/all): Android

Is there a way to use startActivityAsync with custom Activity Action? I want to open a PDF Viewer using

await startActivityAsync('android.intent.action.VIEW', {
        data: contentURL,
        flags: 1,
        type: 'application/pdf',
      });

which works fine in SDK42 but on 43 I need to use Activity Action and all of those are related to settings.

or if someone has another way to show pdf locally, please do share it here.
Thank you!

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