Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Litho [![GithubCI](https://github.com/facebook/litho/actions/workflows/ci.yml/badge.svg)](https://github.com/facebook/litho/actions/workflows/ci.yml) [![Bintray](https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/litho/litho-core/maven-metadata.xml.svg?color=orange&label=bintray)](https://bintray.com/facebook/maven/com.facebook.litho%3Alitho-core/_latestVersion) [![Join the chat at https://gitter.im/facebook/litho](https://badges.gitter.im/facebook/litho.svg)](https://gitter.im/facebook/litho?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/facebook/litho/blob/master/LICENSE)
# Litho [![GithubCI](https://github.com/facebook/litho/actions/workflows/ci.yml/badge.svg)](https://github.com/facebook/litho/actions/workflows/ci.yml) [![Maven Central Version](https://img.shields.io/maven-central/v/com.facebook.litho/litho-core)](https://central.sonatype.com/artifact/com.facebook.litho/litho-core) [![Join the chat at https://gitter.im/facebook/litho](https://badges.gitter.im/facebook/litho.svg)](https://gitter.im/facebook/litho?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/facebook/litho/blob/master/LICENSE)

<img src="website/static/logo.png" width=150 align=right>

Expand Down
12 changes: 6 additions & 6 deletions docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import VersionedCodeBlock from '@theme/VersionedCodeBlock';

## Adding Litho to your Project

We publish the Litho artifacts to Bintray's JCenter. To include Litho to your
Android project, make sure you include the reference to the repository in your `build.gradle` file:
We publish the Litho artifacts to Maven Central. To include Litho to your Android project,
make sure you include the reference to the repository in your `build.gradle` file:

```groovy
repositories {
jcenter()
mavenCentral()
}
```
Then add the dependencies like this:
Expand Down Expand Up @@ -110,12 +110,12 @@ top of your application's `build.gradle` file:
apply plugin: 'kotlin-kapt'
```

We publish the Litho artifacts to Bintray's JCenter. To include Litho to your
Android project, make sure you include the reference to the repository in your `build.gradle` file:
We publish the Litho artifacts to Maven Central. To include Litho to your Android project,
make sure you include the reference to the repository in your `build.gradle` file:

```groovy
repositories {
jcenter()
mavenCentral()
}
```

Expand Down