> For the complete documentation index, see [llms.txt](https://docs.bluefletch.com/bluefletch-enterprise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bluefletch.com/bluefletch-enterprise/product-guides/bluefletch-launcher/launcher3/configurable-layouts/quick-start-applications-folder.md).

# Quick Start Applications Folder

## Overview <a href="#overview-0" id="overview-0"></a>

Quick Start Applications Folder is a Launcher feature that allows frequently-used applications to be pinned to the Home screen. It helps users save time from swiping through multiple pages of apps.

## User Guide <a href="#user-guide-1" id="user-guide-1"></a>

1. IT Administrators can define the settings for the Quick Start Applications Folder feature on the Enterprise Launcher Configuration page in the BlueFletch Portal.
2. Alternatively, changes can also be made directly to the launcher.json file of the organization's preferred editor.
3. This feature, like the Favorites application bar on a standard Android launcher, appears at the bottom of the home screen. It stays there while users scroll through their list of applications.
4. The maximum number of apps that can be stored in the folder is determined by the number of columns of apps per page plus one.
5. For example, if a device typically shows 3 columns of apps per page, then the folder can hold a maximum of 4 visible apps in the folder.

## Feature Configuration <a href="#feature-configuration-2" id="feature-configuration-2"></a>

To set up the Quick Start Applications Folder feature for a particular device profile or device group, please follow the steps below:

### Configuring the Quick Start Applications Folder <a href="#configuring-the-quick-start-applications-folder-3" id="configuring-the-quick-start-applications-folder-3"></a>

To identify a folder within any layout group as the Quick Start Applications Folder, set quickStartFolder to true. It will apply to a specific group only (e.g., if inside an ‘Associates’ group, it will only apply to layouts that include ‘Associates’).

```json
"AssociateApps": [
    ...
    {
        "label": "Quick Start Tools",
        "quickStartFolder": true,
        "contents": [ ... ] 
    }, 
```

Note: Only one folder can be displayed on a Home screen so if multiple folders in a group have this setting as true, the first one on the list will be displayed on the Launcher.

You can also set up password protection for quickstart icons as described [here](/bluefletch-enterprise/product-guides/bluefletch-launcher/launcher3/configurable-layouts/password-protected-applications.md#setting-up-password-protected-items-3).

### Defining Icon Size <a href="#defining-icon-size-5" id="defining-icon-size-5"></a>

You can customize the size of the icons on the folder, whether they will be smaller, bigger, or of the same size as the rest of the icons. If empty, undefined, or invalid, this setting defaults to the standard icon size. The default configuration is shown below:

```json
"quickStartIconSize": "normal"
    },
```

## Full Configuration <a href="#full-configuration-6" id="full-configuration-6"></a>

A sample full configuration for Quick Start Applications Folder is as follows:

```json
"AssociateApps": [

    ...

    {
        "label": "Quick Start Tools",
        "quickStartFolder": true,
        "contents": [

            ...

            {
                "package": "com.bluefletch.launcher",
                "activity": "com.bluefletch.baselauncher.search.SearchActivity",
                "label": "Search"
            }
        ]
    }
]

```

{% hint style="info" %}
Quick Start Applications Folder was introduced in Launcher v3.13.9.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bluefletch.com/bluefletch-enterprise/product-guides/bluefletch-launcher/launcher3/configurable-layouts/quick-start-applications-folder.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
