ios-enterprise

iOS9 Untrusted Enterprise Developer with no option to trust

删除回忆录丶 提交于 2020-01-18 04:46:11
问题 This is not a duplicate of Untrusted App Developer. Since iOS9 there is no option to trust an enterprise build. Has anyone found a workaround? 回答1: In iOS 9.1 and lower, go to Settings - General - Profiles - tap on your Profile - tap on Trust button. In iOS 9.2+ & iOS 11+ go to: Settings - General - Profiles & Device Management - tap on your Profile - tap on Trust button. In iOS 10+, go to: Settings - General - Device Management - tap on your Profile - tap on Trust button. 回答2: Do it like

iOS Enterprise App: Distribute Over the air : Untrusted Enterprise Developer

跟風遠走 提交于 2020-01-04 05:52:15
问题 I have uploaded my .ipa and manifest.plist to my server (say : https: // www.xxxxxxx . xom/app/). And I created a install page in that server. In that install html page I have the hyper link to download my app <a href="itms-services://?action=download-manifest&url=http s: // xxxxxxx.com/ios/manifest.plist"> Download My iOS App </a> If I try to install the app through this install page, the app get downloaded and installed. When I tap the app, it shows "untrusted Enterprise developer". And

iOS Enterprise App: Distribute Over the air : Untrusted Enterprise Developer

巧了我就是萌 提交于 2020-01-04 05:52:06
问题 I have uploaded my .ipa and manifest.plist to my server (say : https: // www.xxxxxxx . xom/app/). And I created a install page in that server. In that install html page I have the hyper link to download my app <a href="itms-services://?action=download-manifest&url=http s: // xxxxxxx.com/ios/manifest.plist"> Download My iOS App </a> If I try to install the app through this install page, the app get downloaded and installed. When I tap the app, it shows "untrusted Enterprise developer". And

Encrypting or protecting files stored in iOS app's NSDocumentsDirectory

陌路散爱 提交于 2019-12-25 04:55:19
问题 I have a custom requirement in one of my products and I need to protect or encrypt files that are stored inside the NSDocumentsDirectory folder. Even if these documents are mailed (The app has the ability to mail documents) to some other person , he or she will not be able to open this document without using my app (I will be using open in functionality of email attachments). So basically only the application can access all these documents and without the app the documents should be mere junk

cannot connect to example.com in iOS enterprise app

纵然是瞬间 提交于 2019-12-23 09:32:36
问题 I'm facing a serious problem. I'm trying to make a enterprise app live.By using BetaBuilder I follows these steps: myApp.ipa manifest.plist index.html manifest.plist: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>assets</key> <array> <dict> <key>kind</key> <string>software-package</string> <key>url</key> <string>https://example.com

Resign iOS Application .iPA file without changing BundleId

纵然是瞬间 提交于 2019-12-22 01:20:21
问题 background: we are getting iOS apps ( .ipa ) from external developers ( their apps may be submitted in the appstore ), and they want submit their apps in our internal store just by sending their .ipa to us we are installing apps using ota, by sending plist to our endusers, itms-services://?action=download-manifest&url=[PLIST_URL] i was using some GUI signing tools such as iResign, iOS App Resigner and AppResigner, injecting custom entitlements, injection App Transport Security into info.plist

Prevent enterprise iOS app from being removed

守給你的承諾、 提交于 2019-12-21 20:27:15
问题 I'd like to prevent an enterprise iOS app from being removed by users. Apple provides documentation on how to do this for Web Clips, but I'm struggling to find anything related to actual apps. Is it possible? and if so then how to do it? The ideal solution would involve a setting in the plist installation file, but options involving configuration profiles or an MDM would also work. 回答1: The only way I know to prevent apps from being deleted is as follows: On your iPhone/iPad go to Settings ->

Enterprise Deployment certificate and profiles

雨燕双飞 提交于 2019-12-17 17:14:37
问题 I'm currently using iOS Developer Enterprise Program for Enterprise Deployment. I want to know what happen when the Certificate and/or the Provisioning profile expire. For now I created a bunch of provisioning profiles to be as far as I can to the expiration date. I want to know if I can securely delete old provisioning profiles that are possibly linked to an app or the apps will stop working. Is it possible in some way that a user who has already download an app will not be able to open it

Distributing iOS application using Enterprise License

霸气de小男生 提交于 2019-12-11 02:16:19
问题 I am working on building an application which needs to be distributed to users of different business organization. So my question is Can I enroll for a iOS Enterprise Program and distribute application to these business users? 回答1: From what I understood from enterprise program, you can distribute applications only to employees of the company you enroll. So if the companies are different you can't, but if they are under the same umbrella you can do it. 回答2: No, the enterprise Program only

Possible to read the enterprise iOS download link plist from within the app?

会有一股神秘感。 提交于 2019-12-10 02:56:26
问题 I'd like to distribute an Enterprise iOS app such that by the time the user opens it, it is already displaying their name and other info, even though the .ipa is the same .ipa that every other user downloads. I figure that I could do this by giving the user an app download URL specific to them and generating the required Enterprise download plist to include some user data, but my question is: Is it even possible to access/read the Plist from the download link from within the app? If so, how?