I am using Visual Studio 2015 and Apache Cordova for making my UWP app. But the taskbar icon for my app is looking smaller than all other apps beside it.
The rightmost icon is showing for my app. As you can see it is smaller (looks like a padded version on all 4 sides) than all the other icons placed at the left of it.
This is the actualSquare44x44Logo.scale-100.png
, as you can see below, there is no padding in my image
I have followed Visual Studios' project template for Apache Cordova and here is my icon declaration in my config.xml
<platform name="windows">
<icon height="150" src="res/icons/windows/Square150x150Logo.scale-100.png" width="150" />
<icon height="360" src="res/icons/windows/Square150x150Logo.scale-240.png" width="360" />
<icon height="30" src="res/icons/windows/Square30x30Logo.scale-100.png" width="30" />
<icon height="310" src="res/icons/windows/Square310x310Logo.scale-100.png" width="310" />
<icon height="106" src="res/icons/windows/Square44x44Logo.scale-240.png" width="106" />
<icon height="70" src="res/icons/windows/Square70x70Logo.scale-100.png" width="70" />
<icon height="170" src="res/icons/windows/Square71x71Logo.scale-240.png" width="170" />
<icon height="50" src="res/icons/windows/StoreLogo.scale-100.png" width="50" />
<icon height="120" src="res/icons/windows/StoreLogo.scale-240.png" width="120" />
<icon height="150" src="res/icons/windows/Wide310x150Logo.scale-100.png" width="310" />
<icon height="360" src="res/icons/windows/Wide310x150Logo.scale-240.png" width="744" />
<icon height="44" src="res/icons/windows/Square44x44Logo.scale-100.png" width="44" />
<icon height="71" src="res/icons/windows/Square71x71Logo.scale-100.png" width="71" />
</platform>
Question
How to make the icon of my app on the taskbar equal to all other icons present to the left of it.
Any idea?
Thanks.
Edit After Issue Resolve
Just wanted to share the fruit. Thanks to @TruthSeeker my taskbar icon now looks like,
Thanks :)