forked from bitstadium/HockeyKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
21 lines (14 loc) · 1.77 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
About:
Hockey is a iOS Ad-Hoc updater framework. It can be used for all apps that target the Apple AppStore and improves the beta testing process dramatically. All beta testers. It consists of two components, a server and a client framework.
The server component is required for all scenarios. But it also can work standalone without the client library. It provides a web interface which beta testers can use to install the latest AdHoc provisioning profile and also the latest beta version via Safari right from the device. One server installation is able to handle multiple applications via different bundle identifiers (I highly suggest using different bundle identifiers for Debug, AdHoc Beta and AppStore release builds !!!).
The client framework should only be included in AdHoc builds and should NOT (!!) be used in AppStore distribution builds! By default the client library will check for updates on your server whenever the app is started or will wake up. The user can adjust this in the settings dialog to alternatively only check once a day or manually.
This framework was created after reading the blog post at http://jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/ where Jeffrey Sambells wrote about the mechanisms required and being available for us to use.
Requirements:
- Beta testers need to run at least iOS 4 to benefit from the auto update functionality
- A PHP5 server needs to be available and is required for distribution of the apps
Acknowledgments:
The following 3rd party open source libraries have been used:
- SBJson by Stig Brautaset (http://github.com/stig/json-framework)
- NSString+URLEncoding by Kaboomerang LLC.
- jQTouch by David Kaneda (http://www.jqtouch.com/)
- PHP plist reader code from http://blog.iconara.net/2007/05/08/php-plist-parsing/