如何使用 Fastlane/Deliver 更新有关贸易代表联系信息的元数据?
How to update metadata about Trade Representative Contact Information using Fastlane/Deliver?
我将所有元数据上传到应用商店,包括屏幕截图、应用评论信息、评级和所有其他内容,但无法使用 Fastlane/Deliver 获得任何命令来传递贸易代表联系信息。
你应该在你的 Deliverfile 中添加这样的东西
trade_representative_contact_information(
first_name: "Alex",
last_name: "Kosyakov",
address_line1: "Nevsky pr., 1",
address_line2: "",
address_line3: "",
city_name: "Saint-Petersburg",
state: "",
country: "Russia",
postal_code: "190000",
phone_number: "+7921XXXXXXX",
email_address: "blabal@gmail."
)
我将所有元数据上传到应用商店,包括屏幕截图、应用评论信息、评级和所有其他内容,但无法使用 Fastlane/Deliver 获得任何命令来传递贸易代表联系信息。
你应该在你的 Deliverfile 中添加这样的东西
trade_representative_contact_information(
first_name: "Alex",
last_name: "Kosyakov",
address_line1: "Nevsky pr., 1",
address_line2: "",
address_line3: "",
city_name: "Saint-Petersburg",
state: "",
country: "Russia",
postal_code: "190000",
phone_number: "+7921XXXXXXX",
email_address: "blabal@gmail."
)