apps
latest
false
- Getting Started
- Introduction
- Using App Studio
- Exporting an App
- Importing an App
- Regions and Instances
- Demo apps
- Demos summary
- How To
- Build your first app (old)
- Build a Mobile-Friendly App
- General User Experience Guidelines
- Use File Control
- Upload a File Using the File Picker Control
- Download a File Using the File Picker Control
- Download a File Using a Link
- Download a File Using an Image Control
- Use Master Detail View
- Use Required Input Validation
- Container Validation
- Use Document Viewer
- Use Count With Choice Set Values
- Use Selected Values From a Table
- Embed Apps
- Embed Maps
- Hide Containers Using a Button
- Include Excel Charts in Apps
- Prerequisites
- Procedure
- Result
- Include MailTo Links
- Include Star Ratings
- Set External Context
- Work With Data Source and Value Bind
- Use the Send Interim Result Activity
- Public Apps
- Notifications
- About notifications
- My notifications
- Managing notifications
- Using VB Expressions
- Overview
- Limitations
- Using the Expression editor in controls
- The Query builder
- Using the Fetch functions
- Migrating legacy apps to VB expressions
- Legacy versus VB expressions
- Useful VB functions
- Custom VB functions
- Designing your App
- Controls Overview
- Layout and Styling
- Sample App Layouts
- Input Controls
- Button
- Checkbox
- Date Picker
- Dropdown
- Multiselect Dropdown
- File Picker
- Radio Button
- Rich Text Editor
- Slider
- Switch
- Text Area
- Textbox
- Textbox (Email)
- Textbox (Number)
- Container Controls
- Differences Between Container Controls
- Container Layout
- Container
- Page
- Page Container
- Display Controls
- Custom List
- Divider
- Document Viewer
- Header
- IFrame
- Image
- Label
- List
- Table
- Icons
- Tabs
- User Context References
- Saving Your App
- App Errors & Troubleshooting
- Events and Rules
- About Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Values
- Rule: Start Process
- Rule: Upload File to Storage Bucket
- Rule: Get File From Storage Bucket
- Rule: Reset Values
- Rule: Create/Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- About Expressions
- Using Expressions
- About Functions
- Function: And, Or, Not
- Function: Concat
- Function: Contains
- Function: Count
- Function: EndsWith
- Function: If
- Function: IsBlank
- Function: Guid
- Function: Length
- Function: List
- Function: StartsWith
- Function: Sum
- Function: Sort
- Function: Now
- Function: Today
- Function: Time
- Function: Year
- Function: Month
- Function: Day
- Function: Hour
- Function: Minute
- Function: New
- Function: Lookup
- Function: Filter
- Leveraging RPA in your App
- Referencing a Process From Orchestrator
- Input and Output Type Properties
- Send Interim Result Activity
- Supported Process Argument Types
- Replacing a Process Referenced in an App
- Referencing a Storage Bucket From Orchestrator
- Configuring an On-Premise Orchestrator for Use by Apps
- Orchestrator Permissions
- Data Flow Between UiPath Apps and Orchestrator
- Leveraging Entities in Your App
- Referencing an Entity in Your App
- Replacing an Entity
- About Data Context
- Using Data Context
- Using Choice Set
- Using Apps With Data Service
- Leveraging Queues in Your App
- Referencing a Queue in Your App
- Replacing a Queue
- Using Apps With Queues
- Leveraging Media in your app
- Referencing a media document in your app
- Binding a media document to Image controls
- Leveraging Actions in your app
- Adding an action to your app
- Adding an action app to an automation
- Binding an action to app controls
- Leveraging Connections in your apps
- Adding a connection to your app
- Replacing a connection
- Using connections in List controls
- FAQ for connections in Apps
- Application Lifecycle Management (ALM)
- About ALM
- General Settings
- Permission Management
- Managing App Versions
- Packaging an App as a Client
- UiPath First-Party Apps
- Automation Launchpad
- Basic Troubleshooting Guide
- Apps Troubleshooting and FAQs
important :
For documentation on app projects in Studio Web, refer to the App Projects chapter in the Studio Web documentation: https://docs.uipath.com/studio-web/automation-cloud/latest/user-guide/apps-in-studio-web.

DEPRECATED
Legacy Apps user guide
Last updated Oct 28, 2025
UiPath Apps are designed to be run in the browser but you can create a Windows executable to run them as well. To run a UiPath App as a Windows client executable, simply create an Electron wrapper that points to the production URL of an app. We've created a sample below to make this easy for you to use.
-
Download the UiPath Apps Client Sample from GitHub and copy the files to a local directory, i.e.
C:\UiPathAppSample. -
Modify the sample to meet your needs. Here are some of the key modifications:
-
icon.png - replace this with any icon you wish.
Note: It's best if the icon is square. - main.js
- RUNTIME_URL (line 7) - change this to point to the production URL of your App
- Window Parameters (lines 18-27) - change these parameters to meet the needs of your app
- package.json
- displayName (line 3) - this will be used as the EXE name of your app
-
- Open a command prompt and navigate to the directory containing the files.
- Run "npm install" to install the node packages needed to build the app.
- Run "npm run start" to open the app as a window client (this is good for testing the app).
-
Run "npm run dist" to build the app and package it with a Setup file. This will result in an EXE in the dist subdirectory (i.e. dist\UiPath Apps sample Setup 1.2.0.exe) which can be distributed to your users.