我有2个文件:
快速文件
group.rb
快速文件
# frozen_string_literal: true
fastlane_version '2.116.0'
default_platform :ios
import "fastfiles/group.rb"
platform :ios do
lane :pr_build do
set_enterprise_app_id
end
end
group.rb
lane :set_enterprise_app_id do
update_app_ids(
app_id: BUNDLE_ID_ENTERPRISE,
shared_extension_id: BUNDLE_ID_ENTERPRISE_SHAREEXTENSION
)
update_app_group(APP_GROUP_ENTERPRISE)
end
但是我的配置项出现错误: [!] main:Object的未定义方法'lane'
我在group.rb中尝试了下一个
platform :iOS do
lane :set_enterprise_app_id do
update_app_ids(
app_id: BUNDLE_ID_ENTERPRISE,
shared_extension_id: BUNDLE_ID_ENTERPRISE_SHAREEXTENSION
)
update_app_group(APP_GROUP_ENTERPRISE)
end
end
但是出现下一个错误: [!] main:Object的未定义方法“平台”