Appearance
📲 Installation ​
This page provides installation instructions for the latest version of the flash
library from Pixel Services.
Installation ​
Maven (pom.xml) ​
Add the repository :
xml<repositories> <repository> <id>pixel-services</id> <name>Pixel Services</name> <url>https://maven.pixel-services.com/repository</url> </repository> </repositories>
And the dependency :
xml<dependencies> <dependency> <groupId>com.pixelservices</groupId> <artifactId>flash</artifactId> <version>{{ latestVersion }}</version> </dependency> </dependencies>
Gradle (build.gradle) ​
Add the repository :
groovyrepositories { maven { url "https://maven.pixel-services.com/repository" } }
And the dependency :
groovydependencies { implementation 'com.pixelservices:flash:{{ latestVersion }}' }