Mac Cli Change App Icon Rating: 5,5/10 9022 reviews

Please follow below steps to change app icon: Add your.ico file in the project. Go to angular.json and in that 'projects' - 'architect' - 'build' - 'options' - 'assets' and here make an entry for your icon file. Refer to the existing entry of favicon.ico to know how to do it. Go to index.html and update the path of the icon file.

  1. Mac Cli Change App Icon Download
  • Mar 11, 2020  1. To get started, download Fanny on your Mac. Once you have downloaded the app, click on the Notification Center icon (three stacked horizontal lines) at the top right corner of the screen. Alternatively, you can swipe to the left from the right edge of the trackpad to access Notification Center on your computer.
  • Customize your Mac with System Preferences. You can change system settings to customize your Mac. For example, you can change the size and location of the Dock, choose a light or dark appearance, change the desktop picture, and more. To change System Preferences on your Mac, click the System Preferences icon in the Dock or choose Apple menu System Preferences.
-->

Every app has an icon/logo that represents it, and that icon appears in multiple locations in the Windows shell:

  • The app list in the start menu
  • The taskbar and task manager
  • Your app's tiles
  • Your app's splash screen
  • In the Microsoft Store

This article covers the basics of creating app icons, how to use Visual Studio to manage them, and how manage them manually, should you need to.

(This article is specifically for icons that represent the app itself; for general icon guidance, see the Icons article.)

Icon types, locations, and scale factors

By default, Visual Studio stores your icon assets in an assets subdirectory. Here's a list of the different types of icons, where they appear, and what they're called.

Icon nameAppears inAsset file name
Small tileStart menuSmallTile.png
Medium tileStart menu, Microsoft Store listing*Square150x150Logo.png
Wide tileStart menuWide310x150Logo.png
Large tileStart menu, Microsoft Store listing*LargeTile.png
App iconApp list in start menu, task bar, task managerSquare44x44Logo.png
Splash screenThe app's splash screenSplashScreen.png
Badge logoYour app's tilesBadgeLogo.png
Package logo/Store logoApp installer, Partner Center, the 'Report an app' option in the Store, the 'Write a review' option in the StoreStoreLogo.png

* Used unless you choose to display only uploaded images in the Store.

To ensure these icons look sharp on every screen, you can create multiple versions of the same icon for different display scale factors.

The scale factor determines the size of UI elements, such as text. Scale factors range from 100% to 400%. Larger values create larger UI elements, making them easier to see on high-DPI displays.

Windows automatically sets the scale factor for each display based on its DPI (dots-per-inch) and the viewing distance of the device.(Users can override the default value by going to the Settings > Display > Scale and layout page.)

Because app icon assets are bitmaps and bitmaps don't scale well, we recommend providing a version each icon asset for each scale factor: 100%, 125%, 150%, 200%, and 400%. That's a lot of icons! Fortunately, Visual Studio provides a tool that makes it easy to generate and update these icons.

Mac Cli Change App Icon Download

Microsoft Store listing image

'How do I specify images for my app's listing in the Microsoft Store?'

By default, we use some of the images from your packages in the Store, as described in the table at the top of this page (along with other images that you provide during the submission process). However, you have the option to prevent the Store from using the logo images in your app's packages when displaying your listing to customers on Windows 10 (including Xbox), and instead have the Store use only images that you upload. This gives you more control over your app’s appearance in various displays throughout the Store. (Note that if your product supports earlier OS versions, those customers may still see images from your packages, even if you use this option.) You can do this in the Store logos section of the Store listing step of the submission process.

When you check this box, a new section called Store display images appears. Here, you can upload 3 image sizes that the Store will use in place of logo images from your app’s packages: 300 x 300, 150 x 150, and 71 x 71 pixels. Only the 300 x 300 size is required, although we recommend providing all 3 sizes.

For more info, see Display only uploaded logo images in the Store.

Managing app icons with the Visual Studio Manifest Designer

Visual Studio provides a very useful tool for managing your app icons called the Manifest Designer.

If you don't already have Visual Studio 2019, there are several versions available, including a free version, (Visual Studio 2019 Community Edition), and the other versions offer free trials. You can download them here: https://developer.microsoft.com/windows/downloads

To launch the Manifest Designer:

  1. Use Visual Studio to open a UWP project.
  1. In the Solution Explorer, double-click the Package.appmxanifest file.

Visual Studio displays the Manifest Designer.

  1. Click the Visual Assets tab.

Generating all assets at once

The first menu item in the Visual Assets tab, All Visual Assets, does exactly what its name suggests: generates every visual asset your app needs with the press of a button.

All you need to do is supply a single image, and Visual Studio will generate the small tile, medium tile, large tile, wide tile, large tile, app icon, splash screen, and package logo assets for every scale factor.

To generate all assets at once:

  1. Click the .. next to the Source field and select the image you want to use. If you're using a bitmap image, make sure it's at least 400 by 400 pixels so that you get sharp results. Vector-based images work best; Visual Studio lets you use AI (Adobe Illustrator) and PDF files.

  2. (Optional.) In the Display Settings section, configure these options:

    a. Short name: Specify a short name for your app.

    b. Show name: Indicate whether you want to display the short name on medium, wide, or large tiles.

    c. Tile background: Specify the hex value or a color name for the tile background color. For example, #464646. The default value is transparent.

    d. Spash screen background: Specify the hex value or color name for the spash screen background.

  3. Click Generate.

Visual Studio generates your image files and adds them to project. If you want to change your assets, simply repeat the process.

Scaled icon assets follow this file naming convention:

filename-scale-scale factor.png

For example,

Square150x150Logo-scale-100.png, Square150x150Logo-scale-200.png, Square150x150Logo-scale-400.png

Notice that Visual Studio doesn't generate a badge logo by default. That's because your badge logo is unique and probably shouldn't match your other app icons. For more info, see the Badge notifications for Windows apps article.

More about app icon assets

Visual Studio will generate all the app icon assets required by your project, but if you'd like to customize them, it helps to understand how they're different from other app assets.

The app icon asset appears in a lot of places: the Windows taskbar, the task view, ALT+TAB, and the lower-right corner of Start tiles. Because the app icon asset appears in so many places, it has some additional sizing and plating options the other assets don't have: 'target-size' assets and 'unplated' assets.

Target-size app icon assets

In addition to the standard scale factor sizes ('Square44x44Logo.scale-400.png'), we also recommend creating 'target-size' assets. We call these assets target-size because they target specific sizes, such as 16 pixels, rather than specific scale factors, such as 400. Target-size assets are for surfaces that don't use the scaling plateau system:

  • Start jump list (desktop)
  • Start lower corner of tile (desktop)
  • Shortcuts (desktop)
  • Control Panel (desktop)

Here's the list of target-size assets:

Asset sizeFile name example
16x16*Square44x44Logo.targetsize-16.png
24x24*Square44x44Logo.targetsize-24.png
32x32*Square44x44Logo.targetsize-32.png
48x48*Square44x44Logo.targetsize-48.png
256x256*Square44x44Logo.targetsize-256.png
20x20Square44x44Logo.targetsize-20.png
30x30Square44x44Logo.targetsize-30.png
36x36Square44x44Logo.targetsize-36.png
40x40Square44x44Logo.targetsize-40.png
60x60Square44x44Logo.targetsize-60.png
64x64Square44x44Logo.targetsize-64.png
72x72Square44x44Logo.targetsize-72.png
80x80Square44x44Logo.targetsize-80.png
96x96Square44x44Logo.targetsize-96.png

* At a minimum, we recommend providing these sizes.

You don't have to add padding to these assets; Windows adds padding if needed. These assets should account for a minimum footprint of 16 pixels.

Here's an example of these assets as they appear in icons on the Windows taskbar:

Unplated assets

By default, Windows uses a target-based asset on top of a colored backplate by default. If you want, you can provide a target-based unplated asset. 'Unplated' means the asset will be displayed on a transparent background. Keep in mind that these assets will appear over a variety of background colors.

Here are the surfaces that use unplated app icon assets:

  • Taskbar and taskbar thumbnail (desktop)
  • Taskbar jumplist
  • Task view
  • ALT+TAB
Icon

Unplated assets and themes

The user's selected theme determines the color of the taskbar. If the unplated asset isn't specifically qualified for the current theme, the system checks the asset for contrast. If it has enough contrast with taskbar, the system uses it. Otherwise, the system looks for a high-contrast version of the asset. If it can't find one, the system draws the plated form of the asset instead.

Target and unplated sizing

Here are the size recommendations for target-based assets, at 100% scale:

More about splash screen assets

For more info about splash screens, see Windows app splash screens.

More about badge logo assets

When you use the asset generator to generate all the assets you need, there's a reason why it doesn't generate badge logos by default: they're very different from other app assets. The badge logo is a status image that appears in notifications and on the app's tiles.

For more information, see Badge notifications for Windows apps.

I only had to click through to the device of I wanted to make changes. The Nest app had a flow of devices with relevant content. Google wifi app download for mac. For each thermostat, it showed the settings and current temp. John C, UI/UX terrible compare to NestI was just strongly encouraged to migrate from the Nest app to Google Home and while everything appears to work, the experience is a huge downgrade.

Customizing asset padding

By default, Visual Studio asset generator applies recommended padding to whatever image. If your images already contain padding or you want full bleed images that extend to the end of the tile, you can turn this feature off by unchecking the Apply recommended padding check box.

Tile padding recommendations

If you want to provide your own padding, here are our recommendations for tiles.

There are 4 tile sizes: small (71 x 71), medium (150 x 150), wide (310 x 150), and large (310 x 310).

Each tile asset is the same size as the tile on which it is placed.

If you don't want your icon to extend to the edge of the tile, you can use transparent pixels in your asset to create padding.

For small tiles, limit the icon width and height to 66% of the tile size:

For medium tiles, limit the icon width to 66% and height to 50% of tile size. This prevents overlapping of elements in the branding bar:

For wide tiles, limit the icon width to 66% and height to 50% of tile size. This prevents overlapping of elements in the branding bar:

For large tiles, limit the icon width to 66% and height to 50% of tile size:

Some icons are designed to be horizontally or vertically oriented, while others have more complex shapes that prevent them from fitting squarely within the target dimensions. Icons that appear to be centered can be weighted to one side. In this case, parts of an icon may hang outside the recommended footprint, provided it occupies the same visual weight as a squarely fitted icon:

Folder

With full-bleed assets, take into account elements that interact within the margins and edges of the tiles. Maintain margins of at least 16% of the height or width of the tile. This percentage represents double the width of the margins at the smallest tile sizes:

In this example, margins are too tight:

Optimizing for specific themes, languages, and other conditions

This article described how to create assets for specific scale factors, but you can also create assets for a wide variety of conditions and combinations of conditions. For example, you can can create icons for high contrast displays or for the light themes and dark themes. You can even create assets for specific languages.

For instructions, see Tailor your resources for language, scale, high contrast, and other qualifiers.