在react native中运行时是否有任何方法更改android:host?

在react native中运行时是否有任何方法更改android:host?,android,reactjs,react-native,deep-linking,Android,Reactjs,React Native,Deep Linking,我想知道如何在应用程序运行期间动态更改主机URL以支持深度链接 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="<PACKAGE_NAME>"> <uses-permission android:name="android.permission.INTERNET" /> <appl

我想知道如何在应用程序运行期间动态更改主机URL以支持深度链接

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="<PACKAGE_NAME>">
  <uses-permission android:name="android.permission.INTERNET" />
  <application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" android:theme="@style/AppTheme">
    <activity android:name=".MainActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
      <intent-filter >
        <data android:scheme="https" android:host="<HOST_URL>" />
      </intent-filter>
    </activity>
  </application>

</manifest>