How can we expose a lightning web component on a Mobile app?Understanding 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
What are substitutions for coconut in curry?
Optimising a list searching algorithm
Unfrosted light bulb
Pronounciation of the combination "st" in spanish accents
Knife as defense against stray dogs
Print a physical multiplication table
gerund and noun applications
Is there a term for accumulated dirt on the outside of your hands and feet?
Do I need to consider instance restrictions when showing a language is in P?
What is the term when voters “dishonestly” choose something that they do not want to choose?
A Ri-diddley-iley Riddle
Describing a chess game in a novel
Using Past-Perfect interchangeably with the Past Continuous
How is the partial sum of a geometric sequence calculated?
Maths symbols and unicode-math input inside siunitx commands
What does Jesus mean regarding "Raca," and "you fool?" - is he contrasting them?
What (if any) is the reason to buy in small local stores?
Have the tides ever turned twice on any open problem?
Suggestions on how to spend Shaabath (constructively) alone
In Aliens, how many people were on LV-426 before the Marines arrived?
In what cases must I use 了 and in what cases not?
Wrapping homogeneous Python objects
PTIJ What is the inyan of the Konami code in Uncle Moishy's song?
What exactly term 'companion plants' means?
How can we expose a lightning web component on a Mobile app?
Understanding 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 16 hours ago
sfdx bombsfdx bomb
714714
714714
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
4 hours 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
4 hours 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
4 hours 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 14 hours ago
sanket kumarsanket kumar
3,2532325
3,2532325
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
4 hours 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
4 hours 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
4 hours 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
4 hours 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