My requirement is, If I upload an ipa file in google drive or share point then the tester should be able to install the ipa in his device from drive with out using iTunes . Is it possible? I can achieve this by deploying the ipa, plist and index.html file in server. The test able to download it for testing.
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
- didBeginContact:(SKPhysicsContact *)contact not in
- Attempt to present UIAlertController on View Contr
Take a look at this link which explains how to get the public link to the file: link
Get the magic number in the link that looks like this: https://drive.google.com/file/d/thisisthemagicnumber/view?usp=sharing
And create a link like this: www.googledrive.com/host/thisisthemagicnumber
Create the links for your HTML, IPA and Plist files. You can then plug these values into the appropriate places and get the OTA download page working.
I have a working example, so please let me know if you need any more help.
Rather that using the google drive I will suggest you to use the TestFlight.. Go to testflight.com. Create an account. Its the simple and best way to even allow the clients and testers to install the app without using iTunes.
Have a look at this link which describes the process of OTA distribution of ipa files. This link uses old version of Xcode but you can follow it in new Xcode versions as well.
Note: You need url in advance & web-server where you will upload the ipa . plist & html file. I think you can give try using Google Drive / Dropbox
Let me know if it works for you.