# ⚡ Getting Started
This page provides installation instructions for the latest version of the `flash` library from Pixel Services.
## Installation
### Maven (pom.xml)
1. Add the repository :
```xml
pixel-services
Pixel Services
https://maven.pixel-services.com/repository
```
2. And the dependency :
```xml
com.pixelservices
flash
{{ latestVersion }}
```
### Gradle (build.gradle)
1. Add the repository :
```groovy
repositories {
maven {
url "https://maven.pixel-services.com/repository"
}
}
```
2. And the dependency :
```groovy
dependencies {
implementation 'com.pixelservices:flash:{{ latestVersion }}'
}
```