Installation
Pulsator4Droid is available on Maven Central. You can add it to your project using either Gradle or Maven.
Gradle
To add the library to your Android project, add the following dependency to your app's build.gradle
file:
dependencies {
// ... other dependencies
compile 'pl.bclogic:pulsator4droid:1.0.3'
}
Ensure that you have jcenter()
listed in your project's top-level build.gradle
file:
allprojects {
repositories {
jcenter()
}
}
Maven
If you are using Maven, add the following dependency to your pom.xml
file:
<dependency>
<groupId>pl.bclogic</groupId>
<artifactId>pulsator4droid</artifactId>
<version>1.0.3</version>
<type>pom</type>
</dependency>