我需要使用这条线
android:networkSecurityConfig="@xml/network_security_config"
在AndroidManifest里面,因为我需要加载不受信任的网站。但这使我的应用程序无法通过此错误加载:
Unable to load script. Make sure you're either running Metro (run 'npx react-native start') or that your bundle 'index.android.bundle' is packaged
删除此行然后应用程序正常启动。我不知道为什么,有人可以帮助我吗?
这个解决方案对我有用
<domain includeSubdomains="true">127.0.0.1</domain>
<domain includeSubdomains="true">localhost</domain>
<domain includeSubdomains="true">10.0.2.2</domain>
<domain includeSubdomains="true">10.0.3.2</domain>