1+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13plugins {
24 alias(libs.plugins.android.application)
35 alias(libs.plugins.kotlin.android)
46 alias(libs.plugins.kotlin.compose)
5- kotlin(" plugin.dataframe" ) version " 2.2.20-Beta1 "
7+ kotlin(" plugin.dataframe" ) version " 2.2.20-Beta2 "
68}
79
810android {
@@ -24,16 +26,18 @@ android {
2426 isMinifyEnabled = true
2527 proguardFiles(
2628 getDefaultProguardFile(" proguard-android-optimize.txt" ),
27- " proguard-rules.pro"
29+ " proguard-rules.pro" ,
2830 )
2931 }
3032 }
3133 compileOptions {
3234 sourceCompatibility = JavaVersion .VERSION_1_8
3335 targetCompatibility = JavaVersion .VERSION_1_8
3436 }
35- kotlinOptions {
36- jvmTarget = " 1.8"
37+ kotlin {
38+ compilerOptions {
39+ jvmTarget = JvmTarget .JVM_1_8
40+ }
3741 }
3842 buildFeatures {
3943 compose = true
@@ -62,9 +66,9 @@ dependencies {
6266 // Core Kotlin DataFrame API, JSON and CSV IO.
6367 // See custom Gradle setup:
6468 // https://kotlin.github.io/dataframe/setupcustomgradle.html
65- implementation(" org.jetbrains.kotlinx:dataframe-core:1.0.0-dev-7831 " )
66- implementation(" org.jetbrains.kotlinx:dataframe-json:1.0.0-dev-7831 " )
67- implementation(" org.jetbrains.kotlinx:dataframe-csv:1.0.0-dev-7831 " )
69+ implementation(" org.jetbrains.kotlinx:dataframe-core:1.0.0-dev-8314 " )
70+ implementation(" org.jetbrains.kotlinx:dataframe-json:1.0.0-dev-8314 " )
71+ implementation(" org.jetbrains.kotlinx:dataframe-csv:1.0.0-dev-8314 " )
6872 // You can add any additional IO modules you like, except for 'dataframe-arrow'.
6973 // Apache Arrow is not supported well on Android.
7074}
0 commit comments