Popularity
0.3
Stable
Activity
6.4
-
0
1
1

Description

Shakebug allows you to receive feedback from your beta testers or real users and improve the quality of your application in a simple way. Here users just need to shake their mobile and all the data regarding bugs & crashes can be seen by developers through their log in panel. It also helpful to analyse your users, session, location etc. Addition, you can add events on each action of your application and track it using this Shakebug framework.

Sign up for a service at https://www.shakebug.com

Programming language: Objective-C
License: GNU General Public License v3.0 or later

ShakeBug alternatives and similar libraries

Based on the "UI Testing" category.
Alternatively, view ShakeBug alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ShakeBug or a related project?

Add another 'UI Testing' Library

README

ShakeBug

Shakebug allows you to receive feedback from your beta testers or real users and improve the quality of your application in a simple way. Here users just need to shake their mobile and all the data regarding bugs & crashes can be seen by developers through their log in panel. It also helpful to analyse your users, session, location etc. Addition, you can add events on each action of your application and track it using this Shakebug framework.

Sign up for a service at https://www.shakebug.com

Supported following type of iOS projects

  1. Swift
  2. Objective-C
  3. SwiftUI
  4. Project with and without SceneDeleage

Installation

CocoaPods

To integrate ShakeBug into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'ShakeBug'

Then, run the following command:

$ pod install

Carthage

Add following line to your Xcode project's Cartfile

github "softnoesis/ShakeBug"

Then, run the following command:

$ carthage update

Then drag Shakebug.xcframework from Carthage folder to your Xcode project's settings.

Swift Package Manager

Navigate to the SPM section in your project, add a new package, point it to

https://github.com/softnoesis/ShakeBug/

and select the latest version.

Code

  1. Import the ShakeBug framework header into your app delegate.

    // Swift
    import ShakeBug
    
    // Objective-C
    #import <ShakeBug/ShakeBug.h>
    
  2. 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.

Optional Settings

  1. Add the following to your app delegate's application:didFinishLaunchingWithOptions: method for showing or not showing first time tutorial screen
// Swift
ShakeBug.sharedInstance().showTutorialScreenFirstTime(false) // Default value True
 // Objective-C
 [[ShakeBug sharedInstance] showTutorialScreenFirstTime:NO];// Default value YES
  1. If you want to show bug or crash from Simulator then use following code application:didFinishLaunchingWithOptions:
// Swift
ShakeBug.sharedInstance().allowCrash(fromSimulator:true) // Default value false
 // Objective-C
 [[ShakeBug sharedInstance] allowCrashFromSimulator:YES];// Default value NO
  1. If you dont want to show any logs on console then use following code application:didFinishLaunchingWithOptions:
// Swift
ShakeBug.sharedInstance().makeLogEnabled(false) // Default value false
  // Objective-C
  [[ShakeBug sharedInstance] makeLogEnabled:NO];// Default value NO
  1. If you want add event to any screen or activity use following methods
// Swift
ShakeBug.sharedInstance().addEventKey("App_open", eventValue: "Started app") //pass any key or value
   // Objective-C
   [[ShakeBug sharedInstance] addEventKey:@"App_open" eventValue:@"Started app"];// pass any key or value

Usage

Build & run your app. Once your app is running, shake your device (^⌘Z in the simulator) to report a bug! Bug/Crash reports are sent directly to login panel of Shakebug.com and also notify on your registered email address.

Contact

Visit on: https://www.shakebug.com

Contact us on [email protected] in case of any use.