https://github.com/nventive/binding.stetho
A Xamarin Binding for Stetho
https://github.com/nventive/binding.stetho
Last synced: about 1 month ago
JSON representation
A Xamarin Binding for Stetho
- Host: GitHub
- URL: https://github.com/nventive/binding.stetho
- Owner: nventive
- License: other
- Created: 2018-06-06T15:56:16.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T17:30:29.000Z (about 8 years ago)
- Last Synced: 2025-10-09T11:17:03.963Z (8 months ago)
- Language: C#
- Size: 1.27 MB
- Stars: 0
- Watchers: 34
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: License.md
Awesome Lists containing this project
README
# Xamarin Binding for Stetho
A Xamarin.Android binding library for [Stetho](https://github.com/facebook/stetho).
## Status
| VSTS | NuGet |
|------|-------|
|  |  |
## Usage
```C#
public class MyApplication : Application
{
public void OnCreate()
{
base.OnCreate();
StethoLibrary.Stetho.Initialize(
StethoLibrary.Stetho
.NewInitializerBuilder(this)
.EnableDumpapp(StethoLibrary.Stetho.DefaultDumperPluginsProvider(this))
.EnableWebKitInspector(StethoLibrary.Stetho.DefaultInspectorModulesProvider(this))
.Build()
);
}
}
```