React Native android:networkSecurityConfig 使应用程序可以启动

问题描述 投票:0回答:1

我需要使用这条线

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

enter image description here

删除此行然后应用程序正常启动。我不知道为什么,有人可以帮助我吗?

android react-native android-manifest android-network-security-config
1个回答
0
投票

这个解决方案对我有用

<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>

https://stackoverflow.com/a/63286158/1308590

© www.soinside.com 2019 - 2024. All rights reserved.