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
Baba GBaba G 

how can we show lightning app in salesforce 1 ?

KaranrajKaranraj
In the component you wish to add, you must include implements="force:appHostable" in your aura:component tag and save your changes.
<aura:component implements="force:appHostable">
The appHostable interface makes the component available on the navigation menu in Salesforce1.

Include your components in the Salesforce1 navigation menu by following these steps.

Create a custom tab for this component.
  1. From Setup, click Create | Tabs.
  2. Click New in the Lightning Component Tabs related list.
  3. Select the Lightning component to display in the custom tab.
  4. Enter a label to display on the tab.
  5. Select the tab style and click Next.
  6. When prompted to add the tab to profiles, accept the default and click Save.
Include your Lightning component in the Salesforce1 navigation menu.
  1. From Setup, click Mobile Administration | Mobile Navigation.
  2. Select the custom tab you just created and click Add.
  3. Sort items by selecting them and clicking Up or Down.
  4. In the navigation menu, items appear in the order you specified. The first item in the Selected list becomes your users’Salesforce1 landing page.

Check your output by going to the Salesforce1 mobile browser app. Your new menu item should appear in the navigation menu.

For more details check Lightning developer guide https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/intro_overview.htm