Git Product home page Git Product logo

bugfendersdk-android-sample's Introduction

Bugfender Android SDK

Javadocs

SDK Installation

Here are the main points to getting Bugfender working on your apps:

  • Get an app key at bugfender.com
  • Add Bugfender SDK dependency to your module <module>/build.gradle: compile 'com.bugfender.sdk:android:1.+'
  • Initialize Bugfender in your Application#onCreate() with:
Bugfender.init(this, "<YOUR APP KEY>", BuildConfig.DEBUG);
Bugfender.enableLogcatLogging();
Bugfender.enableUIEventLogging(this);
  • If using Proguard, you do not need to change your configuration. Bugfender is compatible out of the box.
  • If you detect an issue, you can send it calling Bugfender.sendIssue("Title", "Message");
  • If you want to associate a value (String, Integer, Boolean or Float) to a device, you can send it with (learn more about [Device associated data] (https://bugfender.com/blog/associated-device-information)):
    • Bugfender.setDeviceString("user.email", "[email protected]");
    • Bugfender.setDeviceInteger("user.photo.image.width", 600);
    • Bugfender.setDeviceBoolean("user.is.logged", true);
    • Bugfender.setDeviceFloat("user.children", 3f);
  • If you want to remove a specific value associated with the device, you can do it with: Bugfender.removeDeviceKey("user.children");
  • Bugfender automatically generates an identifier for the application install in a device. You can retrieve it to show in your UI or send it to your server: Bugfender.getDeviceIdentifier();

This repository contains a sample application using Bugfender.

More information

Docs

For more information on all methods available, please go to the Bugfender Android reference documentation.

SDK status

The SDK is suitable for production. Please feel free to open an issue or contact us at bugfender.com/contact .

bugfendersdk-android-sample's People

Contributors

joselufo avatar jgimenez avatar ventayol avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.