Skip to content
BlueWhaleYT edited this page Jul 13, 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

implementation("com.github.BlueWhaleYT.WhaleUtils:<MODULE_NAME>:<MODULE_VERSION>")

Available modules

Regular

  • common
  • file-management

Jetpack Compose

  • compose-common

API Documentation

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

Clone this wiki locally