我刚刚安装了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.'
。这是因为我使用的是Metro Builder?还是其他?
我的信息列表:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>