Skip to content

Commit c226fc6

Browse files
authored
色々な指摘の修正 (#152)
1 parent b8e8a68 commit c226fc6

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

agents/agent-koog/app/build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
alias(libs.plugins.composeMultiplatform)
66

77
// Add Kotlin serialization plugin for Koog API support
8-
kotlin("plugin.serialization") version "2.3.0"
8+
kotlin("plugin.serialization") version libs.versions.kotlin.get()
99
}
1010

1111
android {
@@ -47,10 +47,6 @@ android {
4747
sourceCompatibility = JavaVersion.VERSION_21
4848
targetCompatibility = JavaVersion.VERSION_21
4949
}
50-
51-
buildFeatures {
52-
buildConfig = true
53-
}
5450
}
5551

5652
dependencies {

agents/agent-koog/app/src/main/kotlin/com/example/koog_example/App.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,5 @@ class ChatActivity : ComponentActivity() {
285285
@Preview
286286
@Composable
287287
fun AppAndroidPreview() {
288-
ChatActivity()
288+
ChatScreen()
289289
}

agents/agent-koog/gradle/libs.versions.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[versions]
22
agp = "8.13.2"
3-
androidGradlePlugin = "8.13.2"
43
android-compileSdk = "36"
54
android-minSdk = "24"
65
android-targetSdk = "36"
@@ -24,7 +23,7 @@ buildkonfig = "0.17.1"
2423
kotlinStdlib = "2.3.0"
2524
runner = "1.7.0"
2625
core = "1.7.0"
27-
kermit = "2.0.4"
26+
kermit = "2.0.8"
2827

2928
[libraries]
3029
androidx-material-icons-core = { module = "androidx.compose.material:material-icons-core", version.ref = "materialIconsCore" }
@@ -56,6 +55,6 @@ androidLibrary = { id = "com.android.library", version.ref = "agp" }
5655
composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "composeMultiplatform" }
5756
composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
5857
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
59-
androidKotlinMultiplatformLibrary = { id = "com.android.kotlin.multiplatform.library", version.ref = "androidGradlePlugin" }
58+
androidKotlinMultiplatformLibrary = { id = "com.android.kotlin.multiplatform.library", version.ref = "agp" }
6059
buildkonfig = { id = "com.codingfeline.buildkonfig", version.ref = "buildkonfig" }
6160
androidLint = { id = "com.android.lint", version.ref = "agp" }

0 commit comments

Comments
 (0)