How can I redirect a user to skype for the business app if it is already installed in the device? Do I need to register my app to achieve this?
import { Linking } from 'react-native';
Linking.openURL('sip:example@example.com').then();
It will open a chat window with user example@example.com
Edit: To open app without any section, change the uri like this:
Linking.openURL('ms-sfb://start').then().catch(err => { //app not installed });