1.9 KiB
1.9 KiB
banner_title, banner_description
| banner_title | banner_description |
|---|---|
| Flash - Installation | A guide on how to install the Flash library in your project. |
📲 Installation
This page provides installation instructions for the latest version of the flash library from Pixel Services.
Installation
Maven (pom.xml)
-
Add the repository :
<repositories> <repository> <id>pixel-services</id> <name>Pixel Services</name> <url>https://maven.pixel-services.com/repository</url> </repository> </repositories> -
And the dependency :
<dependencies> <dependency> <groupId>com.pixelservices</groupId> <artifactId>flash</artifactId> <version>{{ latestVersion }}</version> </dependency> </dependencies>
Gradle (build.gradle)
-
Add the repository :
repositories { maven { url "https://maven.pixel-services.com/repository" } } -
And the dependency :
dependencies { implementation 'com.pixelservices:flash:{{ latestVersion }}' }
⚡ Latest version:
{{ latestVersion }}