| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Pluto Layout Inspector is distributed through mavenCentral. To use it, you need to add the following Gradle dependency to your build.gradle file of you android app module.
Note: add the no-op variant to isolate the plugin from release builds.
dependencies {
debugImplementation "com.androidpluto.plugins:layout-inspector:$plutoVersion"
releaseImplementation "com.androidpluto.plugins:layout-inspector-no-op:$plutoVersion"
}Now to start using the plugin, add it to Pluto
Pluto.Installer(this)
.addPlugin(PlutoLayoutInspectorPlugin())
.install()🎉 You are all done!
Now re-build and run your app and open Pluto, you will see the Layout Inspector plugin installed.
To open Layout Inspector plugin screen via code, use this
Pluto.open(PlutoLayoutInspectorPlugin.ID)| Back | FazBrowse Home | New Git URL |