Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Build Guide

Gary O'Brien edited this page Nov 1, 2020 · 6 revisions

Gradle Setup

Include the following to the project's build.gradle files:

build.gradle (project:Chatterplot)

allprojects {
    repositories {
        maven {url 'https://jitpack.io'}
    }
}

build.gradle (Module: Chatterplot.app)

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.1'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation "androidx.recyclerview:recyclerview:1.1.0"  
    implementation "androidx.recyclerview:recyclerview-selection:1.1.0-rc03"  
    implementation 'com.google.android.material:material:1.2.1'  
    implementation 'com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
}

Clone this wiki locally