Skip to content
BlueWhaleYT edited this page Jul 15, 2023 · 9 revisions

Reminder

If you're facing error or unexpected issues when using APIs, feel free to start an Issue.

If you're facing technical problems while programming with APIs, feel free to start a Discussion.

Get Started

Add JitPack repository

In your root build.gradle

pluginManagement {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Add dependency and module

In your module build.gradle

Latest snapshot version:

implementation("com.github.BlueWhaleYT.WhaleUtils:<module_name>:<version>")

// example
implementation("com.github.BlueWhaleYT.WhaleUtils:common:f4ee70694b")

Latest release version: None

Available modules

  • common

  • file-management

  • compose-common

API Documentation

Checkout the API documentation to inspect available APIs of the library. https://whaleutils.netlify.app/docs

Clone this wiki locally