일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 아이폰7
- GCD
- Example
- 포켓볼
- afterdelay
- 페이백
- Bitcode
- 스마트폰
- push
- 앱스토어
- 포켓몬 GO
- LG유플러스
- 보라카이
- UIView
- swift3
- 신도림
- error
- Xcode
- simulator
- swift
- loop
- 샘플
- setting
- Check
- 해몽
- 공략
- UITableView
- 얻는법
- 신도림 테크노마트
- IOS
- Today
- Total
도래울
ios bitcode error 본문
개발을 완료 한 후 정말 역사적으로 앱스토어에 앱을 올릴려고 하는데 ENABLE_BITCODE 오류가 나서 당황할때가 있습니다.
그냥 개발을 할때는 문제가 없는데 말입니다.ㅠㅠ 이럴때는 당황하시지 말고
'Build Settings'에 있는 'Enable Bitcode'를 YES로 바꿔주시면 됩니다.
반대로 이런 오류가 난다면
You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64...
'Enable Bitcode' 옵션을 NO로 해주시면 됩니다.
BitCode 란?
Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled and linked on the store. Including bitcode will allow Apple to re-optimize your app binary in the future without the need to submit a new version of your app to the store. For iOS apps, bitcode is the default, but optional. For watchOS and tvOS apps, bitcode is required. If you provide bitcode, all apps and frameworks in the app bundle (all targets in the project) need to include bitcode
비트 코드는 컴파일 된 프로그램의 중간 표현입니다. 비트 코드를 포함하면 아이튠즈 커넥트에 업로드앱은 컴파일 저장소에 연결됩니다. 비트 코드를 포함하면 애플 스토어에 앱의 새 버전을 제출할 필요 없이 미래에 앱 바이너리를 다시 최적화할 수 있고, iOS 앱의 경우 비트 코드 옵션은 선택 사항이고, watchOS 및 tvOS 앱의 비트 코드가 필수로 적용되어야 한다. - iOS Developer Library
출처 : http://devsc.tistory.com/52
'개발 > iOS' 카테고리의 다른 글
Xcode 8 주석 단축키 동작 안될때 (0) | 2016.11.24 |
---|---|
cryptoSwift encrypt decrypt aes/ecb/pkcs7 (0) | 2016.11.16 |
The executable was signed with invalid entitlements 에러 (0) | 2016.11.10 |
Changing navigation bar color in Swift (0) | 2016.11.09 |
swift status bar hidden (0) | 2016.11.08 |