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")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Secondly, you need to add the following dependency to your module's build.gradle file :-
dependencies {
implementation("com.github.basakjeet08:JetChart:(insert latest version)")
}
dependencies {
implementation 'com.github.basakjeet08:JetChart:(insert latest version)'
}
<dependency>
<groupId>com.github.basakjeet08</groupId>
<artifactId>JetChart</artifactId>
<version>(insert latest version)</version>
</dependency>
Last updated