앱스토어에 앱 업로드하기

예봄아빠
2 min readOct 19, 2019

--

XCode 11 부터는 Application Loader를 더이상 지원하지 않기 때문에, 이제 앱을 업로드하는 방법은 크게 두 가지 정도로 볼 수 있습니다.

1. XCode 의 Organizer를 이용해서 직접 올리는 방법

XCode에서 빌드한 archive파일을 이용해서 올릴 수 있습니다.
XCode → Window → Organizer 를 이용하면 됩니다.

2. Command Line Tool 로 터미널에서 ipa를 올리는 방법

터미널에서 아래와 같은 명령을 사용합니다.

xcrun altool --upload-app --type ios --file ipa파일 --username 아이디 --password 패스워드 Ex) xcrun altool --upload-app --type ios --file /Documents/test.ipa --username test_id --password test_passwod

만약 xcrun 명령을 찾을 수 없다고 나온다면, XCode 가 설치된 위치를 연결시켜줘야 하는데, 아래처럼 Xcode경로를 지정하시면 됩니다.

sudo xcode-select -s /Applications/Xcode.app/Contents/Developer

--

--