Setup - Part 2

Summary: This diff includes minor changes to the pages within the Setup section of Flipper Docs.

Reviewed By: mweststrate

Differential Revision: D41496698

fbshipit-source-id: a338931bd08e474ee348e25798463647f9a0be29
This commit is contained in:
Kevin Strider
2022-11-24 06:18:36 -08:00
committed by Facebook GitHub Bot
parent 11688f2f11
commit 98d2f37f10
5 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ In order to send custom notifications, take the steps detailed below.
## Android
Instantiate and add the plugin in `FlipperClient`.
1. Instantiate and add the plugin in `FlipperClient`.
```java
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
@@ -18,7 +18,7 @@ import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
client.addPlugin(CrashReporterPlugin.getInstance());
```
Use the following API to trigger your custom crash notification.
2. Use the following API to trigger your custom crash notification.
```java
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;

View File

@@ -1,7 +1,7 @@
import useBaseUrl from '@docusaurus/useBaseUrl';
import Link from '@docusaurus/Link';
Currently, the <Link to={useBaseUrl("/docs/features/plugins/fresco")}>Image plugin</Link> only supports [Fresco](https://frescolib.org/) for Android as backend.
Currently, the <Link to={useBaseUrl("/docs/features/plugins/fresco")}>Images plugin</Link> only supports [Fresco](https://frescolib.org/) for Android as backend.
If you'd like to see support for other image loading libraries, please post your request in the [Flipper Support](https://fb.workplace.com/groups/flippersupport) Workplace group.

View File

@@ -2,7 +2,7 @@
import useBaseUrl from '@docusaurus/useBaseUrl';
import Link from '@docusaurus/Link';
To setup the <Link to={useBaseUrl("/docs/features/plugins/leak-canary")}>Leak Canary plugin</Link>, take the following steps:
To setup the <Link to={useBaseUrl("/docs/features/plugins/leak-canary")}>LeakCanary plugin</Link>, take the following steps:
1. Ensure that you have an explicit dependency in your application's `build.gradle` including the plugin dependency, such as is shown in the following snippet:

View File

@@ -18,7 +18,7 @@ This enables the Navigation Plugin to be integrated into existing navigation fra
### Using Android deep links
The Navigation Plugin can be used with built in [deep links for Android](https://developer.android.com/training/app-links/deep-linking).
The Navigation Plugin can be used with built-in [Deep Links for Android](https://developer.android.com/training/app-links/deep-linking).
To deep link to an activity, edit the AndroidManifest.xml and add the intent filter for the given activity, as follows:
@@ -50,7 +50,7 @@ The Navigation Plugin can easily be integrated into a third-party navigation fra
#### AirBnB deep link dispatch
[Deep Link Dispatch](https://github.com/airbnb/DeepLinkDispatch) will work out of the box with Flipper for navigating to links, including support for url parameters.
[DeepLinkDispatch](https://github.com/airbnb/DeepLinkDispatch) will work out of the box with Flipper for navigating to links, including support for url parameters.
To add logging, simply add a BroadcastReceiver to your app that is called on any incoming deep links:

View File

@@ -6,7 +6,7 @@ sidebar_label: Running Flipper with Custom Ports
## Flipper ports - mobile apps that support certificate exchange
:::information
:::info
By default, Flipper runs its servers on ports 9088 and 9089.
The mobile SDKs look for servers on those ports.
:::