LoginSignup
1
1

More than 5 years have passed since last update.

fastlaneメモ for android

Last updated at Posted at 2018-12-28

fastlane plugins

version code を取得したい

追加方法


fastlane add_plugin get_version_code

サンプル

lane :test do
  get_version_code(
    #app_folder_name:"project"
    gradle_file_path:"project/build.gradle",
    ext_constant_name:"versionName"
  )
end

version codeを自動で上げてほしい

追加方法

fastlane add_plugin increment_version_code

サンプル

lane :test do
  increment_version_code(
    gradle_file_path: "project/build.gradle",
    #ext_constant_name: "test"
    #app_folder_name:"app"
  )
end

bumpupのコミットをしたい

追加方法

fastlane add_plugin commit_android_version_bump

サンプル

lane :test do
  commit_android_version_bump(
    gradle_file_folder:"project"
  )
end

追加方法

fastlane add_plugin commit_android_version_bump
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1