Bug & Crash reporting tool.
To integrate ShakeBug into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'ShakeBug'
Then, run the following command:
$ pod install
-
Import the ShakeBug framework header into your app delegate.
// Swift import ShakeBug
// Objective-C #import <ShakeBug/ShakeBug.h>
-
Add the following to your app delegate's
application:didFinishLaunchingWithOptions:
method.// Swift ShakeBug.sharedInstance().initiate(withKey: “<Your Key>")
// Objective-C [[ShakeBug sharedInstance] initiateWithKey:@"<Your Key>"];
Be sure to replace
<Your Key>
with your application key which given by ShakeBug website..
Build & run your app. Once your app is running, shake your device (^⌘Z in the simulator) to report a bug! Bug reports are sent directly to your email address.
Contact us on [email protected] in case of any use.