Skip to content

Commit c1685c7

Browse files
committed
Fix appicon name
1 parent f5f1321 commit c1685c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Fastlane/Fastfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ platform :ios do
4343
})
4444

4545
scheme = options[:scheme] || "beta"
46+
appIconName = "AppIcon-#{scheme.capitalize}"
4647

4748
update_xcconfig_value(
4849
path: 'Configs/App.xcconfig',
4950
name: 'ASSETCATALOG_COMPILER_APPICON_NAME',
50-
value: 'AppIcon-#{scheme.capitalize}'
51+
value: appIconName
5152
)
5253

5354
prepare_certificates

0 commit comments

Comments
 (0)