我试图在exportOptions.plist 中将generateAppStoreInformation 添加为true。但它显示此错误: 在 fastlane 文件中添加
generateAppStoreInformation
的最佳方法和命令是什么。
在 Fastfile 中将generateAppStoreInformation 添加为 true 的确切语法是什么
Could not find action, lane or variable 'export_options'. Check out the documentation for more details: https://docs.fastlane.tools/actions
gym(
scheme: "XXX",
configuration: options[:config],
output_directory: output_directory,
codesigning_identity: "XXXXXX"
)
export_options(
generateAppStoreInformation: true
)
fastlane 中没有参数
generateAppStoreInformation
。
文档:http://docs.fastlane.tools/actions/build_ios_app/#parameters
你的意图到底是什么?
export_options
应该位于 gym
调用内,如下所示:
gym(
export_options: {
generateAppStoreInformation: true
}
)