有什么方法可以在 react-native 的运行时更改 android:host 吗?

问题描述

我想知道如何在应用运行时动态更改 HOST_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>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)