enterprise-distribution

iOS 9.0.2 - Can't Install Enterprise App -Unable to Download App (app name) could not be downloaded at this time

穿精又带淫゛_ 提交于 2019-12-10 15:35:33
问题 My company has an app that can be downloaded through a website using Enterprise Distribution. In iOS 9, tapping the download link brings up the expected pop-up "(website) would like to install (App Name)". Tapping 'install' on that dialog first causes the app to get stuck "Waiting..." App stuck waiting Until it finally indicates: " Unable to Download App (app name) could not be downloaded at this time ." Unable to Download the App Installing works as expected using iOS 7 and iOS 8 . How do we

Download progress bar is not changing progress in iOS enterprise distribution

青春壹個敷衍的年華 提交于 2019-12-10 10:28:24
问题 I am developing and distributing iPad apps via enterprise distribution. They download and execute fine, so everything is ok (the web link, ipa file, plist file, provisioning...). The "problem" is when the user clicks the link to download, the progress bar in the iPad showing the download progress reads "Waiting..." but is empty and never changes. When it is completed, it changes to "Installing..." and then it shows the installation progress correctly. For small apps it is not really a problem

Enterprise Distribution Provisioning Profile Expiration

旧巷老猫 提交于 2019-12-10 01:45:55
问题 Our company enterprise provisioning profile is set to expire in a month, but our distribution certificate is set to expire in a few more years. What are our options? Do I need to regenerate a new provisioning profile and create a new build that I have to redistribute? Or is there a simpler option like just sending out the new provisioning profile I generate? or better yet I don't have to do anything? Thanks 回答1: So generating a new provisioning profile will not invalidate any of the apps out

How to distribute enterprise iPA files

扶醉桌前 提交于 2019-12-08 05:57:34
问题 First of all, let me explain that I have no experience with xcode or any apple products whatsoever. I recently have been working with a developer to create a iOS app for my business. I'm posting this because my experience with this developer has been less than awesome and I need some more professional guidance. The app my developer was creating is intended just to be used to communicate with my employees who are out in the field and not in my office. I'm using a PHP program I created to push

Download progress bar is not changing progress in iOS enterprise distribution

此生再无相见时 提交于 2019-12-05 18:27:32
I am developing and distributing iPad apps via enterprise distribution. They download and execute fine, so everything is ok (the web link, ipa file, plist file, provisioning...). The "problem" is when the user clicks the link to download, the progress bar in the iPad showing the download progress reads "Waiting..." but is empty and never changes. When it is completed, it changes to "Installing..." and then it shows the installation progress correctly. For small apps it is not really a problem, but for larger apps it makes the user think that nothing is happening. Is there a way to show the

iOS App: Enterprise Distribution/Deployment - Missing app.plist

点点圈 提交于 2019-12-04 14:53:29
问题 I'm facing an issue with deployment of enterprise iOS application. Here is sample link to download app from web service: 'itms-services://?action=download-manifest&url=https://location.company.com/sites/mobile/Files/Mobile/deploy/app.plist'. I hosted an html and ipa files on same web server. When I am trying to download app from server, I am getting an error: “Cannot connect to Server” The device log in the Xcode shows, the below log: TOM-iPhone itunesstored[106] : Could not load download

iOS App: Enterprise Distribution/Deployment - Missing app.plist

送分小仙女□ 提交于 2019-12-03 09:16:01
I'm facing an issue with deployment of enterprise iOS application. Here is sample link to download app from web service: 'itms-services://?action=download-manifest&url= https://location.company.com/sites/mobile/Files/Mobile/deploy/app.plist '. I hosted an html and ipa files on same web server. When I am trying to download app from server, I am getting an error: “Cannot connect to Server” The device log in the Xcode shows, the below log: TOM-iPhone itunesstored[106] : Could not load download manifest with underlying error: Error Domain=SSErrorDomain Code=2 "Cannot connect to iTunes Store"

Xcode 10 breaks Ionic Cordova build

試著忘記壹切 提交于 2019-12-02 20:35:03
问题 I have an Ionic 3 App using Enterprise Distribution for a client and of course Apple likes to change settings on their new iOS. Everything was working fine on iOS 11 and when a client-user upgraded to iOS 12 their app completely broke and could not re-download. Steps I've Tried: Check iOS Provisioning Profile Status Rebuild App in Xcode 10.0 Archive and create new manifest and .ipa file for app Rebuild app in npm using ionic cordova build ios --prod Update any plugins that we're needing

Can an Apple team 'member' export from Xcode for iOS distribution?

旧巷老猫 提交于 2019-12-01 07:54:24
I am having a 'member' role in an 'Apple Developer Enterprise Program' team. When I try to export for deployment, it comes with message - You are not allowed to perform this operation, Please check with one of your Team Admins. Based on limited knowledge, I understand that in order to export for deployment I need to have 'admin' role. Am I correct? Is there something like my team admin sending me some certificate / key and then I could use it? If yes, how? UPDATE (Based on responses) Simplifying the question: Can a Team 'member' make a request for distribution signing certificate? Yes or No.

Can I update an iOS Enterprise App in the background like an App Store app can?

梦想的初衷 提交于 2019-11-29 03:45:57
I have an iOS enterprise app that we are wirelessly distributing to our devices. Currently the app polls our server once a day to see if there is an app update. If there is, we try to install it by having the app call the following code: NSURL *installUrl = [NSURL URLWithString:[NSString stringWithFormat:@"itms-services://?action=download-manifest&url=%@", plistUrl]]; [[UIApplication sharedApplication] openURL:installUrl]; This causes the app to prompt the user with an alert dialog to install the update. If they click install, the app closes and the update is downloaded and installed. I am