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

Build Guide

sungraek edited this page Nov 30, 2020 · 6 revisions

Gradle Setup

To build the app, open the chatterplot folder in Android Studio. Choose an emulator or device using the drop-down menu at the top (at least Android API 29), then click the green play button to build and install on the chosen device.

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'
    implementation 'com.github.doyaaaaaken:kotlin-csv-jvm:0.13.0'
}

Clone this wiki locally