본문 바로가기
Fastlane

Fastlane으로 Firebase App Distribution 배포 (3) - IOS Fastlane 설정

by th_bigLight 2022. 12. 6.

*제 노트북이 mac이라서 macOS 기준으로의 방법밖에 설명이 없습니다.

 

해당 링크에 설치 및 셋업 내용이 있습니다.

참고 링크 : https://docs.fastlane.tools/getting-started/ios/setup/

 

Setup - fastlane docs

Getting started with fastlane for iOS Setup Xcode for fastlane xcode-select --install Installing fastlane fastlane can be installed in multiple ways. The preferred method is with Bundler. fastlane can also be installed directly through with Homebrew (if on

docs.fastlane.tools


1. Fastlane을 설치한다.

해당 링크에는 맥에서 제공하는 기본 Ruby는 추천하지 않고 있으나 저는 따로 설치하지 않고 진행했습니다. 
*현재 제 루비 버전 : ruby 2.6.8p205 (2021-07-07 revision 67951)

 

다운로드는 Brew로 진행했습니다.

brew install fastlane

 

2. Fastlane 셋업

*Flutter 프로젝트의 경우 내부에 ios 폴더로 이동해서 진행해주세요

fastlane init

질문들 : 

What would you like to use fastlane for?
1. 📸  Automate screenshots
2. 👩‍✈️  Automate beta distribution to TestFlight
3. 🚀  Automate App Store distribution
4. 🛠  Manual setup - manually setup your project to automate your tasks

나중을 위해 3번 app store distribution으로 진행함.

Please enter your Apple ID developer credentials
Apple ID Username:

애플아이디 등록 진행

Would you like fastlane to manage your app's metadata?

y 로 메타데이터도 적용할 수 있도록 설정.

 

 

이후 appstore 등록까지 진행하기 위한 참고 링크
https://docs.fastlane.tools/getting-started/ios/appstore-deployment/

 

App Store Deployment - fastlane docs

New to fastlane? Click here to open the installation & setup instructions first xcode-select --install # Using RubyGems sudo gem install fastlane -NV # Alternatively using Homebrew brew install fastlane fastlane init More Details iOS App Store deployment u

docs.fastlane.tools

 

댓글