简体   繁体   中英

Install ad-hoc ipa

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.

Several things:

  1. In general, it doesn't matter from where you want to install the app from browser or from your app.
  2. If you don't have Enterprise Developer Program, it is not possible.
  3. The app should be upload to a server with the supported files for it. Files should be configured for thees build.

Detail explanation you can find here: Download and install an ipa from url on iOS

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM