Flipper Stetho Dropin Plugin

Drop in replacement for Stetho to expose dumper plugins in Flipper

License

License

GroupId

GroupId

io.github.hbmartin
ArtifactId

ArtifactId

flipper-stetho-plugin
Last Version

Last Version

0.2.0
Release Date

Release Date

Type

Type

aar
Description

Description

Flipper Stetho Dropin Plugin
Drop in replacement for Stetho to expose dumper plugins in Flipper
Project URL

Project URL

https://github.com/hbmartin/flipper-plugin-stetho
Source Code Management

Source Code Management

https://github.com/hbmartin/flipper-plugin-stetho

Download flipper-stetho-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.hbmartin/flipper-stetho-plugin/ -->
<dependency>
    <groupId>io.github.hbmartin</groupId>
    <artifactId>flipper-stetho-plugin</artifactId>
    <version>0.2.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/io.github.hbmartin/flipper-stetho-plugin/
implementation 'io.github.hbmartin:flipper-stetho-plugin:0.2.0'
// https://jarcasting.com/artifacts/io.github.hbmartin/flipper-stetho-plugin/
implementation ("io.github.hbmartin:flipper-stetho-plugin:0.2.0")
'io.github.hbmartin:flipper-stetho-plugin:aar:0.2.0'
<dependency org="io.github.hbmartin" name="flipper-stetho-plugin" rev="0.2.0">
  <artifact name="flipper-stetho-plugin" type="aar" />
</dependency>
@Grapes(
@Grab(group='io.github.hbmartin', module='flipper-stetho-plugin', version='0.2.0')
)
libraryDependencies += "io.github.hbmartin" % "flipper-stetho-plugin" % "0.2.0"
[io.github.hbmartin/flipper-stetho-plugin "0.2.0"]

Dependencies

runtime (4)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-android-extensions-runtime jar 1.5.0
org.jetbrains.kotlin : kotlin-stdlib jar 1.5.0
com.facebook.flipper : flipper jar 0.87.0
commons-cli : commons-cli jar 1.2

Project Modules

There are no modules declared in this project.

Flipper Plugin to Replace Stetho

Maven Central reviewdog badge CodeFactor GitHub issues

Drop in replacement for Stetho to expose dumper plugins in Flipper

Download

Install in your build.gradle:

dependencies {
  implementation 'io.github.hbmartin:flipper-stetho-plugin:0.2.0'
}

Usage

Instantiate StethoFlipperPlugin with a list of the stetho/dumper plugins to expose. Then add that plugin to Flipper. See the demo app.

client.addPlugin(StethoFlipperPlugin(listOf(MyDumperPlugin())))
OR
client.addPlugin(StethoFlipperPlugin(dumperPluginsProvider.get()))

Contributing

License

MIT License

Copyright (c) Harold Martin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Version
0.2.0
0.1.0