fastlane 통합

1808 단어
설치하다.
gem를 사용하여fastlane 설치
 sudo gem install fastlane

Xcode 명령줄 도구가 설치되어 있는지 확인합니다.
xcode-select --install

프로젝트 디렉터리에 들어가기
fastlane init

Fastfile 파일 작성
default_platform(:ios)

_now = Time.now.strftime("%Y%m%d.%H%M%S")
print("

xcode ") platform :ios do desc "Description of what the lane does" lane :adhoc do increment_build_number(build_number: _now) gym( export_method:"ad-hoc", output_directory:"./build", silent:true #archive_path:"./Archive" ) firim( firim_api_token: "1d3a1e7e810391dba61b99af89be7e72", app_desc: _now, ) end lane :fabu do firim( platform:"ios", firim_api_token: "1d3a1e7e810391dba61b99af89be7e72", app_desc:_now, ipa:"./build/xxx.ipa" ) end end

자동 인증서 관리
초기화
fastlane match init

새로 만들기git 창고
실행
fastlane match development
fastlane match adhoc
fastlane match appstore
fastlane match enterprise

다른 사람이 인증서를 찾다
fastlane match development --readonly

udid 증가
fastlane match development --force_for_new_devices

mobileprofile 경로
open ~/Library/MobileDevice/Provisioning\ Profiles

플러그인 관리
사용 가능한 모든 플러그 인 나열
fastlane search_plugins

지정한 이름의 플러그인을 검색하려면 다음과 같이 하십시오.
fastlane search_plugins [query]

플러그인을 추가하려면:
fastlane add_plugin [name]

플러그인을 설치하려면:
fastlane install_plugins

좋은 웹페이지 즐겨찾기