Ios 快车道:我怎么能;增量“U构建”U编号;只有一个目标?

Ios 快车道:我怎么能;增量“U构建”U编号;只有一个目标?,ios,fastlane,Ios,Fastlane,我的Xcode项目中有两个目标: MyAwesomeApp(构建1) MyGreatApp(构建1) 在增量生成编号操作之后,它们都转向: MyAwesomeApp(构建2) MyGreatApp(构建2) 但我期望的是只将其应用于一个目标。所以当我再次执行类似的操作时: increment\u builder\u编号(方案:“MyAwesomeAppScheme”) 他们转向: MyAwesomeApp(构建3) MyGreatApp(build 2)我可以轻松地将此选项添加到fastlane

我的Xcode项目中有两个目标:

  • MyAwesomeApp(构建1)
  • MyGreatApp(构建1)
  • 在增量生成编号操作之后,它们都转向:

  • MyAwesomeApp(构建2)
  • MyGreatApp(构建2)
  • 但我期望的是只将其应用于一个目标。所以当我再次执行类似的操作时:
    increment\u builder\u编号(方案:“MyAwesomeAppScheme”)

    他们转向:

  • MyAwesomeApp(构建3)

  • MyGreatApp(build 2)我可以轻松地将此选项添加到
    fastlane
    操作中,但需要使用
    agvtool
    等效工具来完成此操作。
    increment\u build\u number
    步骤主要是对
    agvtool
    的包装


    您可以在苹果的文档中找到更多信息:

    那么,如何将您想要bump的.plist文件指定为参数??比如:

    plist_path: "./Info.plist"
    
    下面是一个增加构建编号的方法

    这是Fastfile中的外观:

    increment_build_number_in_plist(        
       target:"MyAwesomeApp"
    )
    

    我可以通过运行下面的命令来增加
    build\u number

    fastlane run increment_build_number
    

    我没有使用任何通道来增加
    版本号

    我已经创建了我的自定义通道,通过使用“xcodeproj”可以设置特定目标名称的版本号和版本号

    # Sets the "VERSION" and "BUILD" number for a target
    #
    # @param args [Hash] Key value arguments. All the values are Strings. List: 
    #   - target_name: The name of the target (REQUIRED)
    #   - version: The version number to be used (REQUIRED)
    #   - build: The build number to be used (REQUIRED)
    #
    desc "Sets the \"VERSION\" and \"BUILD\" number for a target"
    lane :set_version_build_number do |args|
        puts("\"set_version_build_number\" lane with ARGUMENTS: #{args}")
    
        target_name = args[:target_name]
        version = args[:version]
        build = args[:build]
    
        raise(StandardError, "Invalid ARGUMENTS for: \"set_version_build_number\" LANE") unless (
            target_name != nil &&
            version != nil &&
            build != nil
        )
    
        puts("Variables:")
        puts("\ttarget_name: #{target_name}")
        puts("\tversion: #{version}")
        puts("\tbuild: #{build}")
        
        project_url = find_xcode_project()
        raise(StandardError, "Invalid Xcode project for: \"set_version_build_number\" LANE") unless project_url != nil
        project = Xcodeproj::Project.open(project_url)
    
        xc_target = project.targets.find { |target| target.name == target_name }
        raise(StandardError, "Invalid target for: \"set_version_build_number\" LANE") unless xc_target != nil
    
        xc_target.build_configurations.each { |build_configuration| 
            build_configuration.build_settings["MARKETING_VERSION"] = version
            build_configuration.build_settings["CURRENT_PROJECT_VERSION"] = build
        }
    
        project.save()
    end
    
    其中:

    # Finds the location for an Xcode project within the current directory and all his parents
    #
    # @return [String] Full path to the Xcode project or nil if unsuccess
    #
    def find_xcode_project ()
        absolute_dir_path = Dir.getwd
        loop do
            entries = Dir.entries(absolute_dir_path)
            index = entries.find_index{ |entry| entry.include?(".xcodeproj") }
            if index != nil
              return "#{absolute_dir_path}/#{entries[index]}"
            end
      
            absolute_dir_path = File.dirname(absolute_dir_path)
            if absolute_dir_path == nil || absolute_dir_path == "/"
              break
            end
        end
      
        return nil
    end
    
    它可以很容易地使用:

    bundle exec fastlane set_version_build_number target_name:TargetApp version:2.0 build:3
    
    当然,不要忘记将其添加到Fastlane文件中:

    require "xcodeproj" 
    
    然后把这个放进档案里

    gem "xcodeproj"
    

    请看一看@NSCabezon的建议,但是这个动作没有名为plist_path的参数,对吗?不要忘记,目前还不支持带有
    Faslane.swift的插件:(