TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Author: Andreas Linde <[email protected]>
Copyright (c) 2009-2012 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.
/server/database_schema.sql
contains all the default tables/server/crash_v200.php
is the file that is invoked by the iPhone app/server/config.php
contains database access information/server/test_setup.php
simple script that checks if everything required on the server is available/server/admin/
contains all administration scripts/server/admin/symbolicate.php
needs to be copied to a local mac, and the url has to be adjusted to access the scripts on your serverThe server requires at least PHP 5.2 and a MySQL server installation!
/server/local
directorydatabase_schema.sql
in your MySQL database on the web serverAdjust 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
date_default_timezone_set('Europe/Berlin')
(see http://de3.php.net/manual/en/timezones.php)$acceptallapps
to true"de.buzzworks.crashreporterdemo"
(this is the same bundle identifier string as used in the info.plist
of your app!)Invoke test_setup.php
via 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
Add the new database fields to the following tables:
apps
`hockeyappidentifier` text default NULL
crash
`jailbreak` int(11) unsigned default '0'
If you are upgrading from an early version, please make sure the database follows the schema defined in database_schema.sql.
/server/CONFIG.PHP
:
$push_activated
to true$push_newtype
to false$notify_amount_group
to the amount of crash occurences of a pattern when a push message should be sent$notify_default_version
, defines if you want to receive pushes for automatically created new versions for your apps/server/local
onto a local directory on your Intel Mac running at least Mac OS X 10.6.2 having the iPhone SDK 3.x installedlocal/serverconfig.php
$hostname
to the server hostname running the server side part, e.g. www.crashreporterdemo.com
/admin/
directory on the server is access restricted, set the required username into $webuser
and password into $webpwd
$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/server/local/
directory executable: chmod + x symbolicatecrash.pl
Copy the .app
package and .app.dSYM
package 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:
symbolicatecrash nameofthecrashlogfile .
php symbolicate.php
This will print some error message which can be ignored.app
and .app.dSYM
packages 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 serverBWQuincyManager.h
, BWQuincyManager.m
and Quincy.bundle
into your projectCrashReporter.framework
into your projectSystemConfiguration.framework
to your projectIn your appDelegate.h
include
#import "BWQuincyManager.h"
and let your appDelegate implement the protocol BWQuincyManagerDelegate
In your appDelegate applicationDidFinishLaunching function include
[[BWQuincyManager sharedQuincyManager] setSubmissionURL:@"http://yourserver.com/crash_v200.php"];
Done.
BWQuincyManager.h
Quincy.framework
into your projectIn your appDelegate.h
include
#import <Quincy/BWQuincyManager.h>
In your appDelegate.h add the BWQuincyManagerDelegate protocol to your appDelegate
@interface DemoAppDelegate : NSObject <BWQuincyManagerDelegate> {}
In your appDelegate
change the invocation of the main window to the following structure
// this delegate method is required
- (void) showMainApplicationWindow
{
// launch the main app window
// remember not to automatically show the main window if using NIBs
[window makeFirstResponder: nil];
[window makeKeyAndOrderFront:nil];
}
- (void)applicationDidFinishLaunching:(NSNotification *)note
{
// Launch the crash reporter task
[[BWQuincyManager sharedQuincyManager] setSubmissionURL:@"http://yourserver.com/crash_v200.php"];
[[BWQuincyManager sharedQuincyManager] setDelegate:self];
}
The Mac version is NOT compatible with the Mac App Store Sandbox requirements any more!
Done.
The branching structure follows the git flow concept, defined by Vincent Driessen: http://nvie.com/posts/a-successful-git-branching-model/
Master branch:
The main branch where the source code of HEAD always reflects a production-ready state.
Develop branch:
Consider this to be the main branch where the source code of HEAD always reflects a state with the latest delivered development changes for the next release. Some would call this the “integration branch”.
Feature branches:
These are used to develop new features for the upcoming or a distant future release. The essence of a feature branch is that it exists as long as the feature is in development, but will eventually be merged back into develop (to definitely add the new feature to the upcoming release) or discarded (in case of a disappointing experiment).
Release branches:
These branches support preparation of a new production release. By using this, the develop branch is cleared to receive features for the next big release.
Hotfix branches:
Hotfix branches are very much like release branches in that they are also meant to prepare for a new production release, albeit unplanned.
Web server supporting PHP 5.0+ and MySQL.
Requires Max OS X 10.5+
Requires iOS 4.3+ (Starting version 2.1.9 armv6 is not supported any more!)
If you are including QuincyKit in a project with Automatic Reference Counting (ARC) enabled, you will need to set the -fno-objc-arc
compiler flag on all of the QuincyKit source files. To do this in Xcode, go to your active target and select the "Build Phases" tab. In the "Compiler Flags" column, set -fno-objc-arc
for each of the QuincyKit source files.
The following 3rd party open source libraries have been used:
Feel free to add enhancements, fixes, changes and provide them back to the community!
Thanks
Andreas Linde
http://www.andreaslinde.com/
http://www.buzzworks.de/
http://www.hockeyapp.net/