GithubHelp home page GithubHelp logo

ps217 / android_device_xiaomi_santoni Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 127.44 MB

Device Tree for Xiaomi Redmi 4X (Santoni)

Makefile 1.19% C++ 72.33% C 22.57% Forth 0.04% Shell 3.23% Java 0.59% Python 0.03% M4 0.02%

android_device_xiaomi_santoni's People

Contributors

aviraxp avatar bgcngm avatar bprasad884uu avatar bvlj avatar codeworkx avatar flex1911 avatar h2o64 avatar highwaystar avatar hridayhs avatar ishubhamsingh avatar jhenrique09 avatar jiyongp avatar luca020400 avatar luk1337 avatar mayankbali avatar mikeng avatar moetayuko avatar naseer avatar neobuddy89 avatar nichcream avatar nikesh001 avatar nsarkar avatar ps217 avatar rajangohil99 avatar rashed97 avatar riteshsaxena avatar rpius avatar swapnilsoni1999 avatar thescarastic avatar vranger avatar

Stargazers

 avatar

Watchers

 avatar  avatar

android_device_xiaomi_santoni's Issues

Setup Airbrake for your Android application

Installation & Setup

  1. Download the Airbrake Jar or build from source via GitHub

  2. Copy the .jar file to your Android app's libs/ folder

  3. Import the AirbrakeNotifier class in your app's main Activity:

    import com.loopj.android.airbrake.AirbrakeNotifier;
  4. In your activity's onCreate function, register to begin capturing exceptions.

(You can find your project API KEY with your project's settings):

AirbrakeNotifier.register(this, "<Your project API KEY>");

Configuration

The AirbrakeNotifier.register call requires a context and Airbrake API key to be passed in, and optionally a third argument specifying the environment. The environment defaults to production if not set.

To notify Airbrake of non-fatal exceptions, or exceptions you have explicitly caught in your app, you can call AirbrakeNotifier.notify. This call takes exactly one argument, a Throwable, and can be called from anywhere in your code. For example:

try {
    // Something dangerous
} catch(Exception e) {
    // We don't want this to crash our app, but we would like to be notified
    AirbrakeNotifier.notify(e);
}

For more information please visit our official GitHub repo.

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.