upload 3

altool 오류 on Mac

ipa 파일을 빌드후에 다른 빌드 머신에서 altool 명령어로 apple connect store 에 업로드하는 방식으로 마켓에 올리고 있다. 가끔 재시도하라는 에러 메시지에는 오류가 없다가 최근 들어 다음 Waring 메시지가 많이 보였다. "WARN: The Java version within iTMSTransporter is deprecated and will stop functioning after the next release of iTMSTransporter. Please upgrade to the latest version of iTMSTransporter for an updated Java runtime." 그러다가 어느 순간부터는 다음 에러 메시지가 나오면서 아예 실패한다. "Error..

Engineering/Mac 2024.10.31

curl 명령어로 postman 업로드 API 대체

postman 으로 파일 업로드는 UI 메뉴에서 file 파라미터에 해당하는 파일을 로컬 PC 에서 잘 선택해서(Select files..) 호출하면 잘 동작한다. 문제는 윈도우에서 postman 에서 제공하는 Code snippet 명령어로 하면 아래와 같은 오류가 나면서 동작을 안한다는 것이다.curl --location 'http://service.com/apk/upload' \ --form 'file=@"/D:/download/test.apk"' \ --form 'code="12345"'curl: (26) Failed to open/read local data from file/application 윈도우즈 파일 경로가 안 맞는거 같아서 조금 바꿔서 다음과 같이 하면 된다.curl -F file=..

Engineering/Network 2024.06.19

No suitable application records were found. Verify your bundle identifier is correct 해결

iOS 빌드를 AppStore Connect 에 업로드를 하기 위해서 사용한 xcrun altool 명령어에서 아래와 같은 오류 메시지가 나왔다. 환경은 빌드 머신 전용 계정을 사용했다. 2023-12-15 10:50:01.594 altool[94068:34014803] *** Error: Errors uploading '/Users/buildaccount/build/xxx_0.012.01.ipa': ( "Error Domain=ITunesConnectionOperationErrorDomain Code=1190 \"No suitable application records were found. Verify your bundle identifier 'com.boos.abc' is correct.\" User..

Engineering/Mac 2023.12.15