diff --git a/desktop/plugins/public/databases/docs/setup.mdx b/desktop/plugins/public/databases/docs/setup.mdx index b537f44b4..0f7539ad1 100644 --- a/desktop/plugins/public/databases/docs/setup.mdx +++ b/desktop/plugins/public/databases/docs/setup.mdx @@ -1,15 +1,20 @@ -To use the databases plugin, you need to add the plugin to your Flipper client instance. The plugin is currently only available for Android. + +:::note +To use the databases plugin, you need to add it to your Flipper client instance. +The plugin is currently only available for Android. +::: ## Android -Instantiate and add the plugin in `FlipperClient`. +To use the database plugin, instantiate and add the plugin in `FlipperClient`, as shown in the following code: + ```java import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; client.addPlugin(new DatabasesFlipperPlugin(context)); ``` -By default it will list all sqlite databases returned by the context. If you are storing a sqlite database somewhere else, you can specify a `File` to it: +By default, it will list all Sqlite databases returned by the context. If you are storing a Sqlite database somewhere else, you can specify a `File` to it: ```java client.addPlugin(new DatabasesFlipperPlugin(new SqliteDatabaseDriver(context, new SqliteDatabaseProvider() { @@ -25,9 +30,9 @@ client.addPlugin(new DatabasesFlipperPlugin(new SqliteDatabaseDriver(context, ne }))); ``` -If you use a different type of database other than sqlite, you can implement a driver to be able to access it via Flipper. +If you use a different type of database other than Sqlite, you can implement a driver to be able to access it via Flipper: -```java +```java client.addPlugin(new DatabasesFlipperPlugin(new DatabaseDriver(context) { @Override public List getDatabases() {