Skip to content

📲 Installation ​

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
    <repositories>
      <repository>
        <id>pixel-services</id>
        <name>Pixel Services</name>
        <url>https://maven.pixel-services.com/repository</url>
      </repository>
    </repositories>
  2. And the dependency :

    xml
    <dependencies>
      <dependency>
        <groupId>com.pixelservices</groupId>
        <artifactId>flash</artifactId>
        <version>{{ latestVersion }}</version>
      </dependency>
    </dependencies>

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 }}'
    }
âš¡ Latest version: