fix: crash while clicking on an empty chart (#50)

This commit is contained in:
2023-02-08 17:18:48 +01:00
committed by GitHub
parent fe20f90654
commit b2c51f7be1
3 changed files with 10 additions and 7 deletions

View File

@ -4,16 +4,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath("com.android.tools.build:gradle:7.4.1")
}
}
plugins {
id("com.android.application") version "7.4.0" apply false
id("com.android.library") version "7.4.0" apply false
id("com.android.application") version "7.4.1" apply false
id("com.android.library") version "7.4.1" apply false
id("org.jetbrains.kotlin.android") version "1.7.0" apply false
}