-
-
Notifications
You must be signed in to change notification settings - Fork 10
Home
J-RAP edited this page Jun 23, 2023
·
9 revisions
Usage for JitPack.io repositories Add jitpack.io in your repository list (build.gradle)
repositories {
// ...
maven { url 'https://jitpack.io' }
maven {
url "https://www.cursemaven.com"
content { includeGroup "curse.maven" }
}
}
Now you can use any WATERMeDIA release or a direct branch
Check Tags or all Branchs
to choose the right version, this example uses tag 1.2.14
dependencies {
implementation 'com.github.SrRapero720:watermedia:1.2.14'
}
To use latest build with latest changes use instead snapshot build (main branch is the latest/untested version)
dependencies {
implementation 'com.github.SrRapero720:watermedia:main-SNAPSHOT'
}