Retrieve App Using package.xml

How to retrieve App/Custom Application With package.xml

Syntax to retrieve app with package.xml

<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <name>CustomApplication</name>
        <members>Application_DeveloperNmae</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. For Lighting Apps you can created a Utility Bar, Find how to retrieve Utility Bar of an Salesforce Lighting App.

Leave a Reply