Retrieve Lighting App Utility Bar with package.xml

How to retrieve App/Custom Application With package.xml

Retrieve Utility Bar In Salesforce

Syntax to retrieve lightning app Utility Bar with package.xml

<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <name>FlexiPage</name>
        <members>AppDeveloperName_UtilityBar</members>
    </types>
    <version>62.0</version>
</Package>

Explanation:

In Salesforce we we two types of applications

  1. Custom Apps
  2. Standard Apps

Both types app application are supported in Salesforce Classic & Lighting Environment. If we created app for salesforce lightning view then we can cannot leverage that classic view.

Find how to retrieve apps metadata using package.xml.

Utility Bar provides users with quick access to productivity tools. To retrieve utility bar metadata we use FlexiPage as metadata type.

Leave a Reply