From af9475bca1a3a3c78e8508c88b42295a2e27d0fe Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 12 Feb 2021 04:33:35 -0800 Subject: [PATCH] Update JCenter reference in the docs Summary: Still need to update the actual release doc. That's next. Reviewed By: mweststrate Differential Revision: D26399883 fbshipit-source-id: 87c27b254f4def07810a99fd0e1c817b6afb967e --- docs/getting-started/android-native.mdx | 4 ++-- docs/getting-started/react-native-android.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started/android-native.mdx b/docs/getting-started/android-native.mdx index 155430ad9..d3e713dd2 100644 --- a/docs/getting-started/android-native.mdx +++ b/docs/getting-started/android-native.mdx @@ -12,7 +12,7 @@ you can hook up the diagnostics Activity to help you troubleshoot connection iss ## Dependencies -Flipper is distributed via JCenter. Add the dependencies to your `build.gradle` file. +Flipper is distributed via Maven Central. Add the dependencies to your `build.gradle` file. You should also explicitly depend on [`soloader`](https://github.com/facebook/soloader) instead of relying on transitive dependency resolution which is getting deprecated with Gradle 5. @@ -22,7 +22,7 @@ use to make it easier to strip Flipper from your release builds. ```groovy repositories { - jcenter() + mavenCentral() } dependencies { diff --git a/docs/getting-started/react-native-android.mdx b/docs/getting-started/react-native-android.mdx index 9638280c5..871d0e011 100644 --- a/docs/getting-started/react-native-android.mdx +++ b/docs/getting-started/react-native-android.mdx @@ -12,14 +12,14 @@ This should only be necessary if you have an existing app that cannot be upgrade ## Dependencies -Flipper is distributed via JCenter. Add the dependencies to your `build.gradle` file. +Flipper is distributed via Maven Central. Add the dependencies to your `build.gradle` file. You should also explicitly depend on [`soloader`](https://github.com/facebook/soloader) instead of relying on transitive dependency resolution which is getting deprecated with Gradle 5. ```groovy repositories { - jcenter() + mavenCentral() } dependencies {