React Native App Transport Security 已被阻止

React Native App Transport Security has blocked

我刚刚安装了 react-native-image-crop。 当我试图在真实的 iPhone 上拍照时,我收到了一个非常奇怪的错误。 'App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.'。这是因为我使用地铁生成器吗?或者别的什么?

我的Info.plist:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>
        <key>localhost</key>
        <dict>
            <key>NSExceptionAllowsInsecureHTTPLoads</key>
            <true/>
        </dict>
    </dict>
</dict>

您需要在 Info.plist 中添加此密钥

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>