Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Update databases-plugin.md #564

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/setup/databases-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To use the databases plugin, you need to add the plugin to your Flipper client i

Instantiate and add the plugin in `FlipperClient`.
```java
import com.facebook.flipper.plugins.crashreporter.DatabasesPlugin;
import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;

client.addPlugin(new DatabasesFlipperPlugin(context));
```
Expand Down Expand Up @@ -60,4 +60,4 @@ client.addPlugin(new DatabasesFlipperPlugin(new DatabaseDriver(context) {
return null;
}
}));
```
```