mal
My Anime List extractor for Hydra modules
Usage
To depend on mal you will need add the jitpack.io repository in the project build.gradle/settings.gradle file:
build.gradle
allprojects {
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
// ...
}
}
Content copied to clipboard
settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
// ...
}
}
Content copied to clipboard
And then add the mal dependency to your module's dependencies scope:
dependencies {
implementation 'com.github.hydra-app.tools:mal:$current-version'
}
Content copied to clipboard