Add chart to calibration process

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-11-27 17:24:44 +01:00
parent 4f19c761a0
commit 99d93c573d
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
6 changed files with 52 additions and 21 deletions

View file

@ -5,12 +5,12 @@ plugins {
android {
namespace 'dev.kaderli.magsend'
compileSdk 32
compileSdk 33
defaultConfig {
applicationId "dev.kaderli.magsend"
minSdk 28
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"
@ -33,12 +33,12 @@ android {
}
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
}