35 lines
798 B
Markdown
35 lines
798 B
Markdown
---
|
|
prev: false
|
|
next: /docs/v4/core/getting-started.md
|
|
---
|
|
|
|
# Installation
|
|
|
|

|
|

|
|
|
|
<ArtifactPicker4 />
|
|
|
|
## Snapshot
|
|
|
|
In order to use latest `SNAPSHOT` version add snapshot repository
|
|
to your root project's `build.gradle` file:
|
|
|
|
```groovy
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
// this one 👇
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } // 👈 this one
|
|
// this one 👆
|
|
}
|
|
}
|
|
```
|
|
|
|
:::tip Info
|
|
All official artifacts share the same version number and all
|
|
are uploaded to **release** and **snapshot** repositories
|
|
:::
|
|
|