QuincyKit
HockeyApp was retired and the SDKs are deprecated. Please use App Center instead.
Install / Use
/learn @bitstadium/QuincyKitREADME
Author: Andreas Linde <mail@andreaslinde.de>
Copyright (c) 2009-2014 Andreas Linde.
All rights reserved.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Main features of QuincyKit
- (Automatically) send crash reports to a developers database
- Let the user decide per crash to (not) send data or always send
- The user has the option to provide additional information in the settings, like email address for contacting the user
- Give the user immediate feedback if the crash is known and will be fixed in the next update, or if the update is already waiting at Apple for approval, or if the update is already available to install
Main features on backend side for the developer
- Admin interface to manage the incoming crash log data
- Script to symbolicate crash logs on the database, needs to be run on a mac with access to the DSYM files
- Automatic grouping of crash files for most likely same kind of crashes
- Maintain crash reports and sort them by using simple patterns. Automatically know how many times a bug has occured and easily filter the new ones in the DB
- Assign bugfix versions for each crash group and define a status for each version, which can be used to provide some feedback for the user like: Bug already fixed, new version with bugfix already available, etc.
Server side files
/server/database_schema.sqlcontains all the default tables/server/crash_v300.phpis the file that is invoked by the iPhone app/server/config.phpcontains database access information/server/test_setup.phpsimple script that checks if everything required on the server is available/server/admin/contains all administration scripts/server/admin/symbolicate.phpneeds to be copied to a local Mac, and the url has to be adjusted to access the scripts on your server
SERVER INSTALLATION
The server requires at least PHP 5.2 and a MySQL server installation!
- Copy the server scripts to your web server:
All files inside /server except the content of the
/server/localdirectory - Execute the SQL statements from
database_schema.sqlin your MySQL database on the web server
SERVER DATABASE CONFIGURATION
-
Adjust settings in
/server/CONFIG.PHP:$server = 'your.server.com'; // database server hostname $loginsql = 'database_username'; // username to access the database $passsql = 'database_password'; // password for the above username $base = 'database_name'; // database name which contains the below listed tables
-
Adjust
$default_amount_crashes, this defines the amount of crashes listed right away per pattern, if there are more, those are shown after clicking on a link at the end of the shortened list -
Adjust your local timezone in the last line:
date_default_timezone_set('Europe/Berlin')(see http://de3.php.net/manual/en/timezones.php) -
If you DO NOT want to limit the server to accept only data for your applications:
- set
$acceptallappsto true
- set
-
Otherwise:
- start the web interface
- add the bundle identifiers of the permitted apps, e.g.
"de.buzzworks.crashreporterdemo"(this is the same bundle identifier string as used in theinfo.plistof your app!)
-
Invoke
test_setup.phpvia the browser to check if everything is setup correctly and Push can be used or not -
If you are upgrading a previous edition, invoke 'migrate.php' first to update the database setup
UPDATE SERVER TO QUINCYKIT 3.0
Database schema and clients changed. Therefor it is recommended to setup a new installation!
SERVER ENABLE PUSH NOTIFICATIONS
- NOTICE: Push Notification requires the Server PHP installation to have curl addon installed!
- NOTICE: Push Notifications are implemented using Prowl iPhone app and web service, you need the app and an Prowl API key!
- Adjust settings in
/server/CONFIG.PHP:- set
$push_activatedto true - if you don't want a push message for every new pattern, set
$push_newtypeto false - adjust
$notify_amount_groupto the amount of crash occurences of a pattern when a push message should be sent - add up to 5 comma separated prowl api keys into $push_prowlids to receive the push messages on the device
- adjust
$notify_default_version, defines if you want to receive pushes for automatically created new versions for your apps
- set
- If push is activated, check the web interface for push settings per app version
SETUP LOCAL SYMBOLIFICATION
-
NOTICE: These are the instructions when using Mac OS X 10.6.2
-
Copy the files inside of
/server/localonto a local directory on your Intel Mac running at least Mac OS X 10.6.2 having the iPhone SDK 3.x installed -
Adjust settings in
local/serverconfig.php- set
$hostnameto the server hostname running the server side part, e.g.www.crashreporterdemo.com - if the
/admin/directory on the server is access restricted, set the required username into$webuserand password into$webpwd - adjust the path to access the scripts (will be appended to
$hostname):$downloadtodosurl = '/admin/actionapi.php?action=getsymbolicationtodo';// the path to the script delivering the todo list$getcrashdataurl = '/admin/actionapi.php?action=getlogcrashid&id=';// the path to the script delivering the crashlog$updatecrashdataurl = '/admin/crash_update.php';// the path to the script updating the crashlog
- set
-
Make the modified symbolicatecrash.pl file from the
/server/local/directory executable:chmod + x symbolicatecrash.pl -
Copy the
.apppackage and.app.dSYMpackage of each version into any directory of your Mac Best is to add the version number to the directory of each version, so multiple versions of the same app can be symbolicated. Example:QuincyDemo_1_0/QuincyDemo.app QuincyDemo_1_0/QuincyDemo.app.dSYM QuincyDemoBeta_1_1/QuincyDemoBeta.app QuincyDemoBeta_1_1/QuincyDemoBeta.app.dSYM -
Test symbolification:
- Download a crash report into the local directory from above
- run
symbolicatecrash nameofthecrashlogfile . - if the output shows function names and line numbers for your code and apples code, everything is fine and ready to go, otherwise there is a problem :(
-
If test was successful, try to execute
php symbolicate.phpThis will print some error message which can be ignored -
Open the web interface and check the crashlogs if they are now symbolicated
-
If everything went fine, setup a cron job
-
IMPORTANT: Don't forget to add new builds with
.appand.app.dSYMpackages to the directory, so symbolification will be done correctly There is currently no checking if a package is found in the directory before symbolification is started, no matter if it was or not, the result will be uploaded to the server
iOS Setup
For QuincyKit 3.0:
-
Include
BWQuincyManager.h,BWQuincyManager.m,BWQuincyManagerDelegate.h,BWCrashReportTextFormatter.h,BWCrashReportTextFormatter.m, andQuincy.bundleinto your project -
Include
CrashReporter.frameworkinto your project -
Add the Apple framework
SystemConfiguration.frameworkto your project -
In your
appDelegate.minclude#import "BWQuincyManager.h" -
In your appDelegate
applicationDidFinishLaunching:implementation include[[BWQuincyManager sharedQuincyManager] setSubmissionURL:@"http://yourserver.com/crash_v300.php"]; [[BWQuincyManager sharedQuincyManager] startManager]; -
If you want to implement any of the delegates, add the following before the
startManagercall:[[BWQuincyManager sharedQuincyManager] setDelegate:self];and set the protocol to your appDelegate:
@interface YourAppDelegate : NSObject <BWQuincyManagerDelegate> {} -
Done.
MAC Setup
-
Open the
Quincy.xcodeprojin the folderclient/Mac/ -
Build the
Quincy.framework -
Include
Quincy.frameworkinto your project -
In your
appDelegate.minclude#import <Quincy/BWQuincyManager.h> -
In your
appDelegatechange the invocation of the main window to the following structure- (void)applicationDidFinishLaunching:(NSNotification *)note { // Launch the crash reporter task [[BWQuincyManager sharedQuincyManager] setSubmissionURL:@"http://yourserver.com/crash_v200.php"]; [[BWQuincyManager sharedQuincyManager] setDelegate:self]; } -
If you want to implement any of the delegates, add the following before the
startManagercall:[[BWQuincyManager sharedQuincyManager] setDelegate:self];and set the protocol to your appDelegate:
@interface YourAppDelegate : NSObject <BWQuincyManagerDelegate> {} -
If you want to catch additional exceptions which the Mac runtime usually does not forward, open the
Info.plistand set `Principa
Related Skills
node-connect
347.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
