如何通过Fastlane脚本

时间:2018-03-14 18:00:28

标签: ios xcode localization fastlane

我有一个包含多个应用目标的项目,需要能够将现有的英语本地化字符串文件添加到其中一个目标中,仅供开发使用。

以下是我的情景:

  1. 目标A使用英语+多个非英语本地化字符串文件。
  2. 目标B仅使用1个非英语本地化字符串文件。
  3. 目标B不能在App Store版本中包含英文字符串。
  4. 但是,为了在开发过程中提供帮助,我们目前手动将英文字符串添加到Target B的本地化文件(在提示时使用目标A中的现有文件),并在App之前将其删除商店提交。

    由于我们已经运行Fastlane安装/拆卸脚本,我想自动添加/删除脚本中的英文字符串,这样我们就不必每次都手动执行。

    在Fastfile中,我知道如何将文件添加到目标B,但由于本地化文件/引用在Xcode中的结构与常规文件略有不同,我不确定正确的方法是什么。

    以下是我目前的情况:

    def add_english_localization()
        require 'xcodeproj'
    
        project = Xcodeproj::Project.open("../Code/#{XCODE_PROJ}")
    
        app_target = project.targets.first #Target B
        english_file_ref = project.main_group.new_file('../Code/TargetA/Application/Supporting Files/en.lproj') #Existing english file in Target A's directory
        app_target.add_file_references([english_file_ref]) #This adds the file but doesn't properly update Xcode's Localization references...?
    
        project.save
      end
    

    截图:

    enter image description here
    enter image description here


    enter image description here
    enter image description here

1 个答案:

答案 0 :(得分:9)

这是一个小小的ruby脚本,使用xcodeproj删除并添加本地化:

删除语言(本例中为法语):

require 'xcodeproj'
project_path = './Whatever.xcodeproj'
project = Xcodeproj::Project.open(project_path)

for o in project.objects do 
    if o.is_a? Xcodeproj::Project::Object::PBXGroup
        if o.hierarchy_path == "/TargetA/Localizable.strings"
            group = o
            break
        end
    end
end


files = group.files
for file in files do

    if file.path == "fr.lproj/Localizable.strings"
        file.remove_from_project
        puts "Removed " + file.path
    end
end

project.save

添加语言(也是法语):

require 'xcodeproj'
project_path = './Whatever.xcodeproj'
project = Xcodeproj::Project.open(project_path)

for o in project.objects do 
    if o.is_a? Xcodeproj::Project::Object::PBXGroup
        if o.hierarchy_path == "/TargetA/Localizable.strings"
            group = o
            break
        end
    end
end

file = project.new_file("fr.lproj/Localizable.strings")
file.move(group)
file.name = "fr"

project.save

您应该可以在fastfile中调用它,但我没有检查...您可以使用sh("ruby ./name.rb")

直接调用它