[RN] ios 빌드

코드깎는 노인·2020년 12월 2일
0
post-custom-banner

http통신설정

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

보통 개발서버는 http이므로 localhost의 개발서버만 http로 하고자 하면 위와같이 설정

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

모든 http를 허용하고자 하면 위와같이 설정

권한설정

info.plist에서 카메라,위치정보등 필요한 권한을 설정한다.

빌드 스키마 변경

xcode상단탭의 Product=>Scheme=>Edit Echeme에서 Build Configuration을 Release로 수정한다.

profile
내가 볼려고 만든 블로그
post-custom-banner

0개의 댓글