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
Manish Kumar 61Manish Kumar 61 

My lightning component does not show as tab

I created a lightning component but it does not show as a tab. I want it available in Salesforce1 like a VF tab. What do I need to set to do this? 

Once this is done, I want to invoke a 3rd party app on device from it - is that possible?
Best Answer chosen by Manish Kumar 61
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.