You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make sure your have selected the build scheme connected with your library target (`MyAppIcon` in this example).
90
+
Make sure you have selected the build scheme connected with your library target (`MyAppIcon` in this example).
91
91
92
92
You should be able to live-preview the icon in Xcode previews.
93
93
94
-
You can adjust the `configs` parameter to specify which types of the icon you want to preview. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
94
+
You can adjust the `configs` parameter to specify which types of icons you want to preview. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
95
95
96
96
#### 4️⃣ Add exporting code to the executable target
97
97
@@ -109,9 +109,9 @@ let exportURL = FileManager.default.homeDirectoryForCurrentUser.appendingPathCom
109
109
images.forEach { $0.save(to: exportURL) }
110
110
```
111
111
112
-
You can adjust the `configs` variable to specify which types of the icon you want to export. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
112
+
You can adjust the `configs` variable to specify which types of icons you want to export. Check out [`IconConfig.swift`](Sources/AppIconCreator/IconConfig.swift) for possible options.
113
113
114
-
In above example the images will be exported to `MyAppIcon` directory on current user's desktop. Feel free to adjust the `exportURL` variable to your needs.
114
+
In the above example, the images will be exported to `MyAppIcon` directory on the current user's desktop. Feel free to adjust the `exportURL` variable to your needs.
115
115
116
116
#### 5️⃣ Run the executable from Xcode to export your icon images
0 commit comments