TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
BARK (Better App Reporting Kit) is a simple, in-app issue reporting library for iOS. Shaking the app pulls up an action sheet, where beta users can instantly send email or create GitHub issues - with screenshots automatically attached.
pod 'Bark', '~> 0.2'
or clone the repository with git clone [email protected]:stagebloc/bark.git
MessageUI
- to send emails from within the appSystemConfiguration
- for network reachability supportSecurity
- for secure storage of GitHub credentialsMobileCoreServices
- for file MIME type detection on uploaded images AppDelegate.h
file, #import "SBBark.h"
, and add <SBBarkDelegate>
to the delegate list.self.window
equal to the SBWindow subclass, as shown below - make sure to set bark.repositoryName
to the name of the repository you want to submit issues to.#import "SBWindow.h"
...
// an example applicationdidFinishLaunchingWithOptions method
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// create an instance of the SBWindow subclass which will dispatch kSBWindowDidShakeNotification when window shake
SBWindow *window = [[SBWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// configure bark
SBBark *bark = [SBBark sharedBark];
bark.repositoryName = @"stagebloc/bark";
bark.delegate = self;
[[NSNotificationCenter defaultCenter] addObserverForName:kSBWindowDidShakeNotification
object:window
queue:[NSOperationQueue mainQueue]
usingBlock:^(NSNotification *note) {
[bark showBark];
}];
self.window = window;
// Override point for customization after application launch.
SBRootViewController *rootViewController = [[SBRootViewController alloc] init];
self.window.rootViewController = rootViewController;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
Finally, implement the shouldShowActionSheet
method below. return YES
to always show the action sheet on shake, or add your own custom logic.
- (BOOL)shouldShowActionSheet
{
/* add the logic to determine whether or not to show the action sheet. Something like:
if([currentUser isAdmin]) {
return YES;
} else return NO;
*/
return YES;
}
BARK comes with a set of features to make quick adjustments. You can set these below repositoryName
on the bark
object.
// email
bark.emailRecipients = @[@"[email protected]", @"[email protected]"];
bark.emailSubject = @"Subject";
bark.emailBody = @"Body"; // note that this will override sending device info
bark.attachScreenshot = YES; // defaults to YES
// github
bark.defaultAssignee = @"your_username";
bark.defaultMilestone = @"milestone_title";
bark.attachDeviceInfo = YES; // defaults to YES
BARK can also be shown programmatically anywhere in the application using the SBBark
singleton:
[[SBBark sharedBark] showBark];
BARK can be used in production by customizing the shouldShowActionSheet
method. You'll need to create your own way of determining whether or not the current user is an admin. Take a look at the example below - we check against the logged in user's email address.
- (BOOL)shouldShowActionSheet
{
NSArray *adminEmails = @[@"[email protected]", @"[email protected]"];
for(NSString *email in adminEmails) {
if([email isEqualToString:[[self getLoggedInUser] email]]) {
return YES;
}
}
return NO;
}
BARK is published under the MIT License (MIT)
Copyright (c) 2013 StageBloc
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.