function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
BrianWXBrianWX 

LWC Action Not Display In Mobile

I created a simple LWC to be called from Actions and added to the "Salesforce Mobile and Lightning Experience Actions" section in the page layout.  The "Send Mail LWC" action displayed and worked properly when I logged in from a web browser, but not displaying in the Action list in Salesforce Mobile app.

Did I miss any configuration?

Page Layout Config
Page Layout Configuration

Browser Display
Browser


Mobile
User-added image

LWC Component
dispatchIssue.html

<template> </template>

dispatchIssue.js
import { LightningElement, api } from 'lwc';
export default class DispatchIssue extends LightningElement {
    @api invoke() {
        console.log("Hi, I'm an action.");
    }
}


dispatchIssue.js-meta.xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
    <apiVersion>52.0</apiVersion>
    <masterLabel>Dispatch Issue</masterLabel>
    <isExposed>true</isExposed>
    <targets>
        <target>lightning__RecordAction</target>
        <target>lightning__RecordPage</target>        
    </targets>
    <targetConfigs>
        <targetConfig targets="lightning__RecordAction">
          <actionType>Action</actionType>        
        </targetConfig>
        <targetConfig targets="lightning__RecordPage">
            <supportedFormFactors>
                <supportedFormFactor type="Large" />
                <supportedFormFactor type="Small" />
            </supportedFormFactors>
        </targetConfig>
    </targetConfigs>
</LightningComponentBundle>
BrianWXBrianWX
Hidden in a long text of Salesforce Document, "Lightning web component quick actions are available only on record pages in Lightning Experience. They're not supported on the Salesforce mobile app."  Salesforce Support did not even know about this.

https://help.salesforce.com/s/articleView?id=sf.lightning_web_component_actions_create.htm&type=5
simply buzzes 9simply buzzes 9
Its an amazing could you please suggest me the best air purifier factory (https://www.olansichina.com/) that runs longer and also i need your honest recommendations. Thanks Alot.
Nazim Altinay 6Nazim Altinay 6
@BrianWX thank you so much I spent a few hours to understand problem. My problem was not solved, at least I could understand the reason.
sfdc_1sfdc_1
@BrianWX can it visible using aura component