본문 바로가기
iOS/iOS

fastlane/ App Store Connect 앱 자동 생성

by 패쓰킴 2025. 3. 24.
728x90
 

produce - fastlane docs

enable_services Array with Spaceship App Services (e.g. access_wifi: (on|off), app_attest: (on|off), app_group: (on|off), apple_pay: (on|off), associated_domains: (on|off), auto_fill_credential: (on|off), class_kit: (on|off), icloud: (legacy|cloudkit), cus

docs.fastlane.tools

 

fastlane의 Action을 이용하여 App Store Connect에 앱을 생성해본다.

 

 

fastlane produce

 

Apple ID를 입력하고 Enter

 

team이 여러개라면 위와 같이 1) 2) ... 번호가 붙어서 뜨는데

나는 개인작업이라서 2 를 입력하고 Enter

 

생성하려는 앱의 번들 ID를 입력해주고 Enter

 

App Store Connect에 보여질 앱 이름을 적어주면된다.

앱 이름은 한글도 가능하다.

Enter

 

App Store Connect에 가보면 앱이 생성되어 있다.

 

+
fastlane을 init 하고 나면 생성되는 Fastfile을 이용하면 앱 생성시 미리 원하는 값을 설정하여 앱을 생성할 수 있다.

default_platform(:ios)
platform :ios do
    desc "Create a new app on App Store Connect"
    lane :create_app do
        # add actions here: https://docs.fastlane.tools/actions
        produce(
            app_name: "앱 이름"
            language: "ko-KR"
            bundle_id: "번들ID"
            username: "Apple ID"
            app_version: "버전"

            이 외에도 원하는 설정값을 사용할 수 있다!
        )
end

728x90

댓글