How can we expose a lightning web component on a Mobile app?2019 Community Moderator ElectionUnderstanding shadow dom in Lightning web componentsDynamic component creation in Lightning Web ComponentsWhy Lightning Web ComponentCan we do Integration of Asana to lightning Salesforce web Component?How to trigger analyticsInteraction aura component from Lightning web components?Canvas App (or equivalent) for Lightning Web ComponentsWhat are the equivalent of obtaining global and local IDs (via getGlobalId and getLocalId) for Lightning Web Components?Solution to reuse containers to expose LWC to tabs for Classic appLightning Web ComponentAdd Lightning Web Component to Lightning Tab
Why is indicated airspeed rather than ground speed used during the takeoff roll?
1 John in Luther’s Bibel
Should I be concerned about student access to a test bank?
Make a Bowl of Alphabet Soup
Amorphous proper classes in MK
Why doesn't Gödel's incompleteness theorem apply to false statements?
Checking @@ROWCOUNT failing
Did I make a mistake by ccing email to boss to others?
Connection Between Knot Theory and Number Theory
What is the purpose of using a decision tree?
Has the laser at Magurele, Romania reached a tenth of the Sun's power?
Unfrosted light bulb
What do the positive and negative (+/-) transmit and receive pins mean on Ethernet cables?
Do native speakers use "ultima" and "proxima" frequently in spoken English?
Relations between homogeneous polynomials
Does capillary rise violate hydrostatic paradox?
Put the phone down / Put down the phone
Travelling in US for more than 90 days
Output visual diagram of picture
New Order #2: Turn My Way
Derivative of an interpolated function
Is there any common country to visit for persons holding UK and Schengen visas?
Why is "la Gestapo" feminine?
When is the exact date for EOL of Ubuntu 14.04 LTS?
How can we expose a lightning web component on a Mobile app?
2019 Community Moderator ElectionUnderstanding shadow dom in Lightning web componentsDynamic component creation in Lightning Web ComponentsWhy Lightning Web ComponentCan we do Integration of Asana to lightning Salesforce web Component?How to trigger analyticsInteraction aura component from Lightning web components?Canvas App (or equivalent) for Lightning Web ComponentsWhat are the equivalent of obtaining global and local IDs (via getGlobalId and getLocalId) for Lightning Web Components?Solution to reuse containers to expose LWC to tabs for Classic appLightning Web ComponentAdd Lightning Web Component to Lightning Tab
As lightning web component do not support currently (spring 19) in lightning out. How would one expose the component On a native mobile device? Is it possible?
lightning-web-components
add a comment |
As lightning web component do not support currently (spring 19) in lightning out. How would one expose the component On a native mobile device? Is it possible?
lightning-web-components
add a comment |
As lightning web component do not support currently (spring 19) in lightning out. How would one expose the component On a native mobile device? Is it possible?
lightning-web-components
As lightning web component do not support currently (spring 19) in lightning out. How would one expose the component On a native mobile device? Is it possible?
lightning-web-components
lightning-web-components
asked 2 days ago
sfdx bombsfdx bomb
714715
714715
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use your Lightning Web Component in mobile app too. The < component >.js-meta.xml file defines the metadata values for the component, including the design configuration for components intended for use in Lightning App Builder. Edit the configuration file to:
- Make your component usable in Lightning App Builder and in managed
packages. - Define what types of Lightning pages your component can be used on.
- Configure your component’s properties.
- Set your component’s supported objects.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>45.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Best Component Ever</masterLabel>
<description>This is a demo component.</description>
<targets>
<target>lightning__RecordPage</target>
<target>lightning__AppPage</target>
<target>lightning__HomePage</target>
</targets></LightningComponentBundle>
Including the above code in meta file will expose your component to App pages, home pages and record pages. You can use app pages in your mobile app.
Read more here :-Use Components in Salesforce Experiences
It will tell you how to use Lightning web components in different containers, including Lightning Experience, the Salesforce mobile app, and Lightning communities.
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "459"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254172%2fhow-can-we-expose-a-lightning-web-component-on-a-mobile-app%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use your Lightning Web Component in mobile app too. The < component >.js-meta.xml file defines the metadata values for the component, including the design configuration for components intended for use in Lightning App Builder. Edit the configuration file to:
- Make your component usable in Lightning App Builder and in managed
packages. - Define what types of Lightning pages your component can be used on.
- Configure your component’s properties.
- Set your component’s supported objects.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>45.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Best Component Ever</masterLabel>
<description>This is a demo component.</description>
<targets>
<target>lightning__RecordPage</target>
<target>lightning__AppPage</target>
<target>lightning__HomePage</target>
</targets></LightningComponentBundle>
Including the above code in meta file will expose your component to App pages, home pages and record pages. You can use app pages in your mobile app.
Read more here :-Use Components in Salesforce Experiences
It will tell you how to use Lightning web components in different containers, including Lightning Experience, the Salesforce mobile app, and Lightning communities.
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
add a comment |
You can use your Lightning Web Component in mobile app too. The < component >.js-meta.xml file defines the metadata values for the component, including the design configuration for components intended for use in Lightning App Builder. Edit the configuration file to:
- Make your component usable in Lightning App Builder and in managed
packages. - Define what types of Lightning pages your component can be used on.
- Configure your component’s properties.
- Set your component’s supported objects.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>45.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Best Component Ever</masterLabel>
<description>This is a demo component.</description>
<targets>
<target>lightning__RecordPage</target>
<target>lightning__AppPage</target>
<target>lightning__HomePage</target>
</targets></LightningComponentBundle>
Including the above code in meta file will expose your component to App pages, home pages and record pages. You can use app pages in your mobile app.
Read more here :-Use Components in Salesforce Experiences
It will tell you how to use Lightning web components in different containers, including Lightning Experience, the Salesforce mobile app, and Lightning communities.
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
add a comment |
You can use your Lightning Web Component in mobile app too. The < component >.js-meta.xml file defines the metadata values for the component, including the design configuration for components intended for use in Lightning App Builder. Edit the configuration file to:
- Make your component usable in Lightning App Builder and in managed
packages. - Define what types of Lightning pages your component can be used on.
- Configure your component’s properties.
- Set your component’s supported objects.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>45.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Best Component Ever</masterLabel>
<description>This is a demo component.</description>
<targets>
<target>lightning__RecordPage</target>
<target>lightning__AppPage</target>
<target>lightning__HomePage</target>
</targets></LightningComponentBundle>
Including the above code in meta file will expose your component to App pages, home pages and record pages. You can use app pages in your mobile app.
Read more here :-Use Components in Salesforce Experiences
It will tell you how to use Lightning web components in different containers, including Lightning Experience, the Salesforce mobile app, and Lightning communities.
You can use your Lightning Web Component in mobile app too. The < component >.js-meta.xml file defines the metadata values for the component, including the design configuration for components intended for use in Lightning App Builder. Edit the configuration file to:
- Make your component usable in Lightning App Builder and in managed
packages. - Define what types of Lightning pages your component can be used on.
- Configure your component’s properties.
- Set your component’s supported objects.
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>45.0</apiVersion>
<isExposed>true</isExposed>
<masterLabel>Best Component Ever</masterLabel>
<description>This is a demo component.</description>
<targets>
<target>lightning__RecordPage</target>
<target>lightning__AppPage</target>
<target>lightning__HomePage</target>
</targets></LightningComponentBundle>
Including the above code in meta file will expose your component to App pages, home pages and record pages. You can use app pages in your mobile app.
Read more here :-Use Components in Salesforce Experiences
It will tell you how to use Lightning web components in different containers, including Lightning Experience, the Salesforce mobile app, and Lightning communities.
answered 2 days ago
sanket kumarsanket kumar
3,2632326
3,2632326
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
add a comment |
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
Are you saying that lwc would be wrapped with aura Component then placed on a lightning page and added as a tab to Salesforce mobile app would work ? Would it be possible then to expose it this way via lightning out app then? I guess I need to expirment it but if someone have tried would save some time..
– sfdx bomb
2 days ago
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254172%2fhow-can-we-expose-a-lightning-web-component-on-a-mobile-app%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown