Through my react-native app I am trying to make the user able to install another enterprise app. The link to the second app looks like this
itms-services://?action=download-manifest&url=https://example.com//667/app-667.plist?token=jhsdbafkjkwdsfqkjdwkdjqs
I tried to open the URL using Linking
Linking.openURL(url)
and also using WebView
<View>
<WebView
source={{uri: this.state.appUrl}}
/>
But nothing happens. Have you an idea aboout the issue? To use Linking shall I link RCTLinking to my project? I read something about it here but I am not sure.