Skip to content

Commit 07bbd99

Browse files
committed
android example version bumps
1 parent 20d0833 commit 07bbd99

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

examples/android-example/app/build.gradle.kts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13
plugins {
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

810
android {
@@ -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
}

examples/android-example/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
agp = "8.11.1"
3-
kotlin = "2.2.20-Beta1"
3+
kotlin = "2.2.20-Beta2"
44
coreKtx = "1.10.1"
55
junit = "4.13.2"
66
junitVersion = "1.1.5"

0 commit comments

Comments
 (0)