Best android open-source packages and libraries.

StethoHelper

Facebook Stetho utils for Android app
Updated 3 years ago

StethoHelper

Facebook Stetho utils for Android app

Getting started

In your build.gradle:

dependencies {

    // debug
    debugImplementation 'com.github.nicai1900.StethoHelper:stethohelper:v0.0.6'
    
    // release no op
    releaseImplementation 'com.github.nicai1900.StethoHelper:stethohelper-no-op:v0.0.6'
}

In your Application class:

class ExampleApplication : Application() {

    override fun onCreate() {
        super.onCreate()

        StethoHelper.install(this)
    }
  
}

Okhttp

private fun initOkhttpClient(): OkHttpClient {
    val builder = OkHttpClient.Builder()
    builder.addNetworkInterceptor(StethoInterceptorWrapper())
    return builder.build()
}
Tags utils