GMusic-API Gradle & Maven Implementation
Add the GMusic-API to your project:
Gradle implementation:
Code (Text):
repositories {
maven(url = "https://jitpack.io/")
}
Code (Text):
compileOnly("com.github.Gecolay.GMusic:core:VERSION")
Maven implementation:
Code (Text):
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
Code (Text):
<dependency>
<groupId>com.github.Gecolay.GMusic</groupId>
<artifactId>core</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
API for Developers
If you are a Developer and like to create your own code around GMusic you can use the GMusicAPI!
Initialization
There is no Initialization. GMusicAPI is a class with static methods!
So you can use all methods like:
Code (Text):
GMusicAPI.getInstance();
A list of all GMusic-Methods:
Take a closer look at the latest API here:
GMusicAPI