일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Xcode
- ui
- Storyboard
- UITableView
- Chrats
- UIKit
- 라이브러리
- Chart
- PyQt
- Python
- cocoapods
- TableView
- modal
- charts
- UIButton
- graph
- 그래프
- 개발
- kotlin
- Swift
- 어플리케이션
- Apple
- androidstudio
- 개발자
- button
- alamofire
- ios
- PyQt5
- Android
- library
Archives
- Today
- Total
Jiwift
fastlnae을 간단하게 사용한 경험 본문
반응형
fastlane 간단하지만 환경에 따라서 간단하지 않을 수 있습니다. 이럴거면 그냥 archive하지 설정을 이렇게 어렵게해야하나... 했지만.. 적용하고나니깐 알겠습니다. 명령어 돌리고 화장실을 다녀오니깐 확실하게 느껴지더라고요.
일단 저는 Testflight까지만 진행했고 아직 심사까지하는 절차는 하지 않았습니다. Testflight를 기준으로 업로드, 수출 규정 준서 체크까지 알아서 다해줍니다.
사진을 보시면 8분을 절약했다고 나와있네요.
심사 제출까지 해보려고했는데 에러가 발생해서 이 부분을 해결하고 테스트를 해봐야할 것 같네요.
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
clear_derived_data
increment_build_number(xcodeproj: "앱이름.xcodeproj")
build_app(scheme: "앱이름", clean: true)
upload_to_testflight
end
end
제가 적용한 스크립트입니다.
반응형
'내 작품 > 복붙태그' 카테고리의 다른 글
iOS 무료로 백업하는 기능 개발 후기 (0) | 2024.02.19 |
---|---|
iOS 앱 데이터 서버 없이 백업과 복원을 무료로 하는 법 (0) | 2024.02.08 |
iOS fastlane Unable to upload archive. Failed to get authorization for username '이메일' and password (0) | 2024.02.06 |
뉴비 iOS 개발자 fastlane 적용하기 (2) | 2024.02.06 |
뉴비 iOS 개발자 새로운 어플리케이션 출시 (1) | 2024.01.29 |