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 {