如何使用快速通道操作修改iOS应用图标?

时间:2019-02-01 02:48:47

标签: ios testflight fastlane appicon

enter image description here

我使用Fastlane操作将应用程序上载到TestFlight,并且想要修改应用程序图标。在Xcode中,“目标的构建设置”中的“资产目录应用程序图标集名称”选项可以修改应用程序图标,但是我找不到Fastlane的操作来修改应用程序图标,并且我使用了徽章和app_icon在下面,但没有用。

Fastlane文件如下:

lane :beta do |values|
badge(custom: './Assets.xcassets/AppIconBeta.appiconset/IconBeta-1024.png')
#badge(path: './Assets.xcassets/AppIconBeta.appiconset/IconBeta-1024.png')
#app_icon('./Assets.xcassets/AppIconBeta.appiconset/IconBeta-1024.png')

match(type: 'appstore',readonly: false,app_identifier:'com.health-beta',force_for_new_devices: false,force: true)
gym(scheme: 'Health - PROD', export_method: 'app-store')
pilot
end

1 个答案:

答案 0 :(得分:0)

在FASTLANE脚本,您可以明确地添加一个徽章,并使用你的图标做一些修改badge https://docs.fastlane.tools/actions/badge/

badge(custom: <badge path>)