Buglife alternatives and similar libraries
Based on the "Code Quality" category.
Alternatively, view Buglife alternatives based on common mentions on social networks and blogs.
-
chisel
Chisel is a collection of LLDB commands to assist debugging iOS apps. -
SwiftFormat
A command-line tool and Xcode Extension for formatting Swift code -
FBRetainCycleDetector
iOS library to help detecting retain cycles in runtime. -
FBMemoryProfiler
iOS tool that helps with profiling iOS Memory usage. -
CleanArchitectureRxSwift
Example of Clean Architecture of iOS app using RxSwift -
OCLint
A static source code analysis tool to improve quality and reduce defects for C, C++ and Objective-C -
HeapInspector-for-iOS
Find memory issues & leaks in your iOS app without instruments -
Dotzu
iOS app debugger while using the app. Crash report, logs, network. -
dotenv-linter
⚡️Lightning-fast linter for .env files. Written in Rust 🦀 -
spacecommander
Commit fully-formatted Objective-C as a team without even trying. -
IBAnalyzer
Find common xib and storyboard-related problems without running your app or writing unit tests. -
ODUIThreadGuard
A guard to help you check if you make UI changes not in main thread -
DWURecyclingAlert
Optimizing UITableViewCell For Fast Scrolling -
SwiftCop
SwiftCop is a validation library fully written in Swift and inspired by the clarity of Ruby On Rails Active Record validations. -
Warnings-xcconfig
An xcconfig (Xcode configuration) file for easily turning on a boatload of warnings in your project or its targets. -
Marshroute
Marshroute is an iOS Library for making your Routers simple but extremely powerful -
PSTModernizer
Makes it easier to support older versions of iOS by fixing things and adding missing methods -
Trackable
Trackable is a simple analytics integration helper library. It’s especially designed for easy and comfortable integration with existing projects. -
DecouplingKit
decoupling between modules in your iOS Project. iOS模块化过程中模块间解耦方案 -
AnyLint
Lint anything by combining the power of scripts & regular expressions. -
WeakableSelf
A Swift micro-framework to easily deal with weak references to self inside closures -
SwiftLinter
Share lint rules between projects and lint changed files with SwiftLint. -
UIBaseKit
This helps make the view's configuration code, hierarchy code, and constraint code neat. -
Bugsee
In-app bug and crash reporting with video, logs, network traffic and traces.
Appwrite - The open-source backend cloud platform
* 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 Buglife or a related project?
README
Buglife is an awesome bug reporting SDK & web platform for iOS apps. Here's how it works:
- User takes a screenshot, or stops screen recording
- User annotates their screenshot & writes feedback
- Bug reports are pushed to your team's email/Jira/Slack/Asana/wherever you track bugs.
You can also find Buglife for Android here.
Main Features | |
---|---|
👤 | Free + no account required |
📖 | Open source |
🏃🏽♀️ | Fast & lightweight |
🎨 | Themeable |
📩 | Automatic caching & retry |
📜 | Custom form fields, with pickers & multiline text fields |
ℹ️ | Advanced logging, with debug / info / warning levels |
📎 | Custom attachments, including JSON & SQLite support |
🎥 | Attach photos & video from camera roll |
📟 | String customization |
🌎 | 16 languages supported, with RTL for Arabic + Hebrew |
🙈 | Automatic view blurring for sensitive information |
👩🏽💻 | Written in Objective-C, with full Swift support |
Demo
To try the example app, you can either run pod try Buglife
from your command line, OR clone this repository and open the Xcode project under the “Example” directory.
Installation
CocoaPods
To integrate Buglife into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'Buglife'
Then, run the following command:
$ pod install
Carthage
Place the following line in your Cartfile:
github "Buglife/Buglife-iOS"
Now run carthage update
. Then drag & drop the Buglife.framework in the Carthage/build folder to your project. Refer to the Carthage README for detailed / updated instructions.
Manually
Unzip it & pull
Buglife.framework
into the Frameworks group in your project. In the following dialog box, make sure you have "Copy items if needed" checked.
Code
Import the Buglife framework header into your app delegate.
// Swift import Buglife
// Objective-C #import <Buglife/Buglife.h>
Add the following to your app delegate's
application:didFinishLaunchingWithOptions:
method.// Swift Buglife.shared().start(withEmail: "[email protected]")
// Objective-C [[Buglife sharedBuglife] startWithEmail:@"[email protected]"];
Be sure to replace
[email protected]
with your own email address; this is where bug reports will be sent to.
Usage
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.
You can customize how the bug reporter is invoked. Rather than shake, we recommend configuring the bug reporter to be shown when a user takes a screenshot:
// Swift
Buglife.shared().invocationOptions = .screenshot
// Objective-C
[Buglife sharedBuglife].invocationOptions = LIFEInvocationOptionsScreenshot;
To learn more about customizing Buglife, refer to the documentation.
Requirements
- Xcode 8 or later
- iOS 9 or later
Contributing
We don't have any contributing guidelines at the moment, but feel free to submit pull requests & file issues within GitHub!
*Note that all licence references and agreements mentioned in the Buglife README section above
are relevant to that project's source code only.