일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- JPA
- mac
- darkmode
- Apple
- Swift
- Git
- github
- 웹뷰
- stack
- Realm
- window
- IOS
- 개발자
- error
- MacOS
- 한글
- UIButton
- rxswift
- Firebase
- Notification
- SwiftUI
- Session
- FLUTTER
- view
- Archive
- iOS16
- Xcode
- appstore
- Code
- Today
- Total
목록Archive (4)
EEYatHo 앱 깎는 이야기
에러 내용 Archive 후, appstore upload를 진행할 때 발생. Asset validation failed Invalid Pre-Release Train. The train version '15.1.1' is closed for new build submissions (ID: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) Asset validation failed This bundle is invalid. The value for key CFBundleShortVersionString [15.1.1] in the Info.plist file must contain a higher version than that of the previously approved versi..
그동안 Xcode 12.4를 사용하다가, 13로 업데이트 했다. 그런데 기존에 잘 배포하고있던 앱이, Archive 시 RealmSwift에서 에러가 발생했다. 처음엔 업데이트한 Xcode가 문제겠거니 생각했다가, 지인과 오픈톡에 물어보니 나만 겪는 현상이었다. 즉 Xcode 13만의 문제가 아니였다. RealmSwift 같은 몇몇 프레임워크들은 Xcode의 버전에 종속성을 가진다. Releases · realm/realm-cocoa Realm is a mobile database: a replacement for Core Data & SQLite - realm/realm-cocoa github.com 위의 Realm Github에서 확인해보면, Xcode 12.4에서는 RealmSwift 10.7.2를..
사내 앱 GithubAction 적용하다가 알아낸 것들 적습니다. 생략 ) 1. CI / CD 할 때 인증이 필요한 구간은 2가지다. 2. 개발 주체와 배포 주체가 같느냐 다르냐에 따라, 인증에 요구되는게 달라진다. 3. auto signing을 하려면 애플 로그인이 필요하다. ( 사내 서버면 쉽지만, 깃헙액션에서는 넘나 어려운 짓이다 ㅠ ) 1. 일단 CI / CD 할 때 인증이 필요한 구간은 2개임. archive 할 때, exportArchive (ipa생성) 할 때. 1) archive 할 때의 특징 깃헙 서버에서 archive를 할 때는, xcode에서 설정한 build setting을 따라감. 즉, xcode의 Signing & Capabilities에 설정 한 것에 따라 Auto sigini..