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
ShakeBug alternatives and similar libraries
Based on the "UI Testing" category.
Alternatively, view ShakeBug alternatives based on common mentions on social networks and blogs.
-
Bluepill
Bluepill is a reliable iOS testing tool that runs UI tests using multiple simulators on a single machine -
TouchVisualizer
DISCONTINUED. Lightweight touch visualization library in Swift. A single line of code and visualize your touches! -
ios-driver
Selenium server to test native, hybrid and web apps on IOS. Join us on IRC #ios-driver on freenode -
AutoMate
Swift framework containing a set of helpful XCTest extensions for writing UI automation tests -
appium
Appium is an open source test automation framework for use with native and hybrid mobile apps. -
UIAutomation
JavaScript library to write test scripts that exercise your app’s user interface elements while the app runs on a connected device. -
Flawless App
tool for visual quality check of mobile app in a real-time. It compares initial design with the actual implementation right inside iOS simulator.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ShakeBug or a related project?
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
- Swift
- Objective-C
- SwiftUI
- 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
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.
Optional Settings
- 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
- 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
- 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
- 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.