How open page to upload forms in React Native external app

Hello, how can you open the page to upload forms from an external application? I tried the following code, but I was only able to access a form through the tutorial mentioned here: https://docs.getodk.org/launch-collect-from-app/

I am currently using react native like this:

const handlerODKLink = (formId) => {
    const odkUrl = `content://org.odk.collect.android.provider.odk.forms/forms/${formId}`;   
    const odkPlayStoreConfig = {
      appName: 'ODK',
      playStoreId: 'org.odk.collect.android',
    };
    AppLink.maybeOpenURL(odkUrl, odkPlayStoreConfig);
  };

Keep in mind that will only work for Android only.