Fastlane 完成自动化打包

通过Fastlane 完成自动化打包

1.Fastlane 安装

1.1 检查 Xcode 命令行工具是否安装,在终端输入以下命令,如果安装过会有提示,如果没装过就会自动开始安装。

xcode-select —install

1.2 开始安装 Fastlane ,在终端输入以下命令。

sudo gem install fastlane --verbose

1.3 如果安装时出现错误无法安装,就使用以下命令安装

sudo gem install -n /usr/local/bin fastlane

1.4 安装完成后可以输入以下命令查看版本来验证是否安装成功。

fastlane --version

2. 蒲公英配置 Fastlane 初始化配置

2.1 初始化配置,终端cd 到你项目工程的根目录(xcodeproj 的同级目录)

2.2 安装蒲公英的 Fastlane 插件,终端输入以下命令安装 蒲公英 插件

fastlane add_plugin pgyer

2.3 初始化配置Fastlane

fastlane init

3.参照项目根目录中的Fastlane文件


fastlane_version "2.101.1"

default_platform :ios

platform :ios do

  desc "以 stg环境 方式打包并上传到蒲公英"

  lane :archiveStg do

    puts "以 development 方式打包"

    gym(

      # 指定打包所使用的输出方式 (可选: app-store, package, ad-hoc, enterprise, development)

      export_method: "development",

      # 指定项目的 scheme 名称

      scheme: "generali-stg",

      # 指定输出的文件夹地址

      output_directory: "~/Desktop/generali-stg/" + Time.new.strftime("%Y-%m-%d %H-%M-%S"),

    )

    puts "上传 ipa 包到蒲公英"

    pgyer(

      # 蒲公英 API KEY

      api_key: "10852ae2cfa75e0569d7c687affdd4c2",

      # 蒲公英 USER KEY

      user_key: "7dba99e4b49f48ff94a6fdd3a6396a28"

    )

  end

  desc "以 pre环境 方式打包并上传到蒲公英"

  lane :archivePre do

    puts "自动生成 Provisioning Profiles 文件"

    sigh(

      # 指定输出的文件夹地址

      output_path: "./archive/sign",

      # 是否为 AdHoc 证书(设为 false 或不写默认为 AppStore 证书)

      adhoc: true

    )

    puts "以 ad-hoc 方式打包"

    gym(

      # 指定打包所使用的输出方式 (可选: app-store, package, ad-hoc, enterprise, development)

      export_method: "ad-hoc",

      # 指定项目的 scheme 名称

      scheme: "generali-pre",

      # 指定输出的文件夹地址

      output_directory: "~/Desktop/generali-pre" + Time.new.strftime("%Y-%m-%d-%H-%M-%S"),

      # 指定打包方式 (可选: Release, Debug)

      configuration: "Release"

    )

    puts "上传 ipa 包到蒲公英"

    pgyer(

      # 蒲公英 API KEY

      api_key: "10852ae2cfa75e0569d7c687affdd4c2",

      # 蒲公英 USER KEY

      user_key: "7dba99e4b49f48ff94a6fdd3a6396a28"

    )

  end

  # desc "以 app-store 方式打包并上传到 iTunes Connect"

  # lane :release do

  #  puts "自动生成 Provisioning Profiles 文件"

  #  sigh(

  #    # 指定输出的文件夹地址

  #    output_path: "./archive/sign"

  #  )

  #  puts "以 app-store 方式打包"

  #  gym(

  #    # 指定打包所使用的输出方式 (可选: app-store, package, ad-hoc, enterprise, development)

  #    export_method: "app-store",

  #    # 指定项目的 scheme 名称

  #    scheme: "generali-stg",

  #    # 指定输出的文件夹地址

  #    output_directory: "~/Desktop/generali-store" + Time.new.strftime("%Y-%m-%d-%H-%M-%S"),

  #    # 指定打包方式 (可选: Release, Debug)

  #    configuration: "Release"

  #  )

  #  puts "上传 ipa 包到 iTunes Connect"

  #  deliver(

  #    # 跳过截图上传

  #    skip_screenshots: true,

  #    # 跳过元数据上传

  #    skip_metadata: true,

  #    # 跳过审核直接上传

  #    force: true

  #  )

  # end

end

初始化过程中会让你输入苹果开发者账号的账号和密码,这个信息会存储在钥匙串中,后续使用无需再输入密码。

初始化过程中还会检测当前项目的 App Identifier 是否已经在 Apple Developer 中,还会检测当前 App 是否已经在 iTunes Connect 中,如果都满足的话,过程应该是比较顺利的。

初始化完成之后会在你项目工程的目录下生成一个 fastlane 文件夹,里面是 Fastlane 的一些配置文件。其中 Appfile 里面存放了 App 的基本信息包括 App_Identifier 、AppID 、Team_ID 等。Fastfile 是最重要的一个文件,在这个文件里面可以编写和定制我们打包脚本的一个文件,所有自定义的功能都写在这里

4.使用Fastlane 自动化打包

4.1 cd到工程目录下 

4.2 运行

fastlane archiveStg 即可

4.3 最终出现 successfully代表成功

你可能感兴趣的:(Fastlane 完成自动化打包)