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










1















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?










share|improve this question


























    1















    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?










    share|improve this question
























      1












      1








      1








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 days ago









      sfdx bombsfdx bomb

      714715




      714715




















          1 Answer
          1






          active

          oldest

          votes


















          2














          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.






          share|improve this answer























          • 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










          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
          );



          );













          draft saved

          draft discarded


















          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









          2














          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.






          share|improve this answer























          • 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















          2














          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.






          share|improve this answer























          • 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













          2












          2








          2







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          He _____ here since 1970 . Answer needed [closed]What does “since he was so high” mean?Meaning of “catch birds for”?How do I ensure “since” takes the meaning I want?“Who cares here” meaningWhat does “right round toward” mean?the time tense (had now been detected)What does the phrase “ring around the roses” mean here?Correct usage of “visited upon”Meaning of “foiled rail sabotage bid”It was the third time I had gone to Rome or It is the third time I had been to Rome

          Bunad

          Færeyskur hestur Heimild | Tengill | Tilvísanir | LeiðsagnarvalRossið - síða um færeyska hrossið á færeyskuGott ár hjá færeyska hestinum