How To Customize UWP Applications Via Manifest Edits
How To Customize UWP Applications Via Manifest Edits
Requirements
A Windows PC (Minimum : Windows 7 SP1)
Table Of Contents……………………………………………………………………….
1) Introduction Page 03
2) Preparations Page 03
Introduction
You can change the Manifest of the Applications to change their appearances to your liking if the default
settings are not so pleasing to you.
#Beware : Whatever changes done to the manifest needs a full repack and a reinstallation of the app
using the repacked Modified Package.
Preparations
If you have the Appx/Bundle of the Application you are going to modify ;
Rename it to .zip
Extract the whole contents of the Package to anywhere in your PC (If it’s AppxBundle file,
then open the “ARM” Appx File and extract it’s contents)
If you extracted it from your Phone using Apps Data Manager or Windows Universal tools ;
Either way, what you have to do is open the “AppxManifest.xml” file which is among the Package Data
using any Text Editor.
Using this edit, the Application name which is displayed in alphabetical App list will be changed.
HINT !
Use “CTRL + F” to find this if you are having a hard time locating it in manifest file
Change the text inside the quotes (Highlighted area in the pic) to the name you want to give to the
application.
Then save the file & proceed to next edits or Repack the Package to Install.
Using this edit, you can edit the name of the app shown in Medium & Wide tiles of the Application you
want to edit.
HINT !
Use “CTRL + F” to find this if you are having a hard time locating it in manifest file
Change the text inside the quotes (Highlighted area in the pic) to the name you want to give to the
application.
Then save the file & proceed to next edits or Repack the Package to Install.
This manifest edit will let you change the App List & Start Tile Colors of an Application.
NOTICE !
This edit will work only if the Tile Assets in “Assets” folder are Transparent
HINT !
Use “CTRL + F” to find this if you are having a hard time locating it in manifest file
Color names
You can also set the background color of the tiles to a common
color name.
IMPORTANT NOTE !
When entering either “transparent” or a color name, use all lower case to type !!
You can find the hex color codes with a single web search or use the
attached W10 accent values below.
This edit will let you specify the Color of the Splash Screen of the Application.
NOTICE !
Not every apps have splash screens, but you can add one to every app, see the next topic.
> Find “BackgroundColor” inside the “uap:SplashSreen” tag (see pic carefully)
HINT !
Use “CTRL + F” to find this if you are having a hard time locating it in manifest file
Color names
You can also set the background color of the Splash Screen to a
common color name.
IMPORTANT NOTE !
When entering either “transparent” or a color name, use all lower case to type !!
You can find the hex color codes with a single web search or use the
attached W10 accent values below.
Most apps including In-Built Apps like Phone, Messaging, people, etc.. don’t have Splash Screens, but
with this edit, you can add one to any UWP app you want.
NOTICE !
The two lines should be perfectly aligned to each other with equal spaces.
SplashScreen Image
<uap:SplashScreen Image="Assets\WideTile.png" BackgroundColor="transparent" />
Since the app doesn’t have Splash Screen Assets, we are gonna set WideTile assets as the Splash Screen
Assets.
> Go to “Assets” folder and find the WideTile PNG of the Application.
> Copy it’s name, cut down the “.scale-xxx” part & paste it in AppxManifest (Change the path too if it’s in
a sub folder inside “Assets” folder)
Example :- Alarms app has the WideTile Assets in “Assets” folder with the name of
“AlarmsWideTile.scale-200.PNG”.
BackgroundColor
<uap:SplashScreen Image="Assets\WideTile.png" BackgroundColor="transparent" />
Look in the “How to Change Splash Screen Color” heading to modify it if needed.
Following any of the above Manifest Edits, you are going to need to repack the package to a
Appx/Bundle File to be able to Install it in your Device
Then you can use that package to install that modified Application to any device.
You can get to know about repacking via the below guide.
#Related Guides
The below Guide will explain the easiest procedure to change Application Assets.
A PC
Bootloader Unlock NOR Mass Storage Mode
Uninstalling the app.
Additional Notes
To Install the modified Packages, you will need to Interop Unlock your device.
Credits
Thank you !
______Lasitha Samarasinghe______