πŸ› οΈSetting up

Introduction

To start with setting up the Jet Chart Library, follow the steps given on this page, and you will be set to build your own cool user interface.

Firstly, you need to add the following piece of code to your root settings.gradle file :-

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        maven(url = "https://jitpack.io")
    }
}

Secondly, you need to add the following dependency to your module's build.gradle file :-

dependencies {
    implementation("com.github.basakjeet08:JetChart:(insert latest version)")
}

Note : After you are done with these steps you need to sync the Gradle file before you can start using the library in your projects.

Last updated

Was this helpful?