Giter Site home page Giter Site logo

appinfo-android's Introduction

AppInfo

With this library you can easily implement debug view which will show different debug data like contents of BuildConfig and SharedPreferences

Installation

Add dependency into your app level build.gradle:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
dependencies {
    implementation 'com.github.gbksoft:appinfo-android:1.0.1'
}

You need to setup AppInfo inside your Application class:

public class MyApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        setupAppInfo();
    }

    private void setupAppInfo() {
        new AppInfo.Builder(this)
            .isEnabled(true)
            .build();
    }
}

You need to pass application context into builder constructor. Also you can add several parameters to constructor, like:

Add isShake() call to allow showing this debug view via shaking device

new AppInfo.Builder(this).isEnabled(true).isShake().build();

You can pass sensitivity parameter to isShake(4.0f) method, by default 4.0f

new AppInfo.Builder(this).isEnabled(true).isShake(4.0f).build();

Allow debug view in release build type

new AppInfo.Builder(this).isEnabled(true).build();

How to use:

To manually show debug view you need to call AppInfo.showAppInfo(this), passing Activity

To set custom data to debug view you need to call method
AppInfo.setCustomData(Map<String, Map<String, ?>> customData),

To set custom data to debug view you need to call method
AppInfo.addCustomData(Map<String, Map<String, ?>> customData),

Let us know

We'd be very happy if you sent links to your projects where you use our component. Just send us email to [email protected]

appinfo-android's People

Contributors

annedomini avatar

Stargazers

 avatar

Watchers

 avatar  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.