ตั้งค่าปลั๊กอิน Compose Compiler Gradle
สำหรับ Gradle ให้ใช้ปลั๊กอิน Compose Compiler Gradle เพื่อตั้งค่าและกำหนดค่า Compose
ตั้งค่าด้วยแคตตาล็อกเวอร์ชัน Gradle
ตั้งค่าปลั๊กอิน Compose Compiler Gradle ดังนี้
- ในไฟล์
libs.versions.tomlให้นำการอ้างอิงถึง Compose Compiler ออก - ในส่วน
versionsและpluginsให้เพิ่มทรัพยากร Dependency ใหม่
[versions]
kotlin = "2.3.21"
[plugins]
org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
// Add this line
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
- ในไฟล์
build.gradle.ktsระดับรากของโปรเจ็กต์ ให้เพิ่มโค้ดต่อไปนี้ลงในส่วนplugins
plugins {
// Existing plugins
alias(libs.plugins.compose.compiler) apply false
}
- ในแต่ละโมดูลที่ใช้ Compose ให้ใช้ปลั๊กอินดังนี้
plugins {
// Existing plugins
alias(libs.plugins.compose.compiler)
}
ตอนนี้โปรเจ็กต์ควรจะบิลด์และคอมไพล์ได้หากใช้การตั้งค่าเริ่มต้น หากมีการกำหนดค่าตัวเลือกที่กำหนดเองในคอมไพเลอร์ Compose ให้ทำตามส่วนถัดไป
ตั้งค่า Compose Compiler โดยไม่ใช้แคตตาล็อกเวอร์ชัน Gradle
เพิ่มปลั๊กอินลงในไฟล์ build.gradle.kts ที่เชื่อมโยงกับโมดูลที่ใช้ Compose
plugins {
id("org.jetbrains.kotlin.plugin.compose") version "2.3.21" // this version matches your Kotlin version
}
เพิ่ม classpath ลงในไฟล์ build.gradle.kts ระดับบนสุดของโปรเจ็กต์
buildscript {
dependencies {
classpath("org.jetbrains.kotlin.plugin.compose:org.jetbrains.kotlin.plugin.compose.gradle.plugin:2.3.21")
}
}
ตัวเลือกการกำหนดค่าด้วยปลั๊กอิน Compose Compiler Gradle
หากต้องการกำหนดค่าคอมไพเลอร์ Compose โดยใช้ปลั๊กอิน Gradle ให้เพิ่มบล็อก composeCompiler ลงในไฟล์ build.gradle.kts ของโมดูลที่ระดับบนสุด
android { … }
composeCompiler {
reportsDestination = layout.buildDirectory.dir("compose_compiler")
stabilityConfigurationFile = rootProject.layout.projectDirectory.file("stability_config.conf")
}
ดูรายการตัวเลือกทั้งหมดที่มีได้ในเอกสารประกอบ
ตั้งค่าทรัพยากร Dependency ของ Compose
ใช้ Compose BOM เวอร์ชันล่าสุด 2026.04.01 เสมอ
ตั้งค่าแฟล็ก compose เป็น true ภายใน BuildFeatures ของ Android
เพื่อเปิดใช้ฟังก์ชันการทำงานของ Compose ใน Android Studio
เพิ่มคำจำกัดความต่อไปนี้ลงในไฟล์ build.gradle ของแอป
ดึงดูด
android {
buildFeatures {
compose true
}
}
Kotlin
android {
buildFeatures {
compose = true
}
}
เพิ่ม Compose BOM และทรัพยากร Dependency ของไลบรารีย่อยของ Compose
ดึงดูด
dependencies {
def composeBom = platform('androidx.compose:compose-bom:2026.04.01')
implementation composeBom
androidTestImplementation composeBom
// Choose one of the following:
// Material Design 3
implementation 'androidx.compose.material3:material3'
// or skip Material Design and build directly on top of foundational components
implementation 'androidx.compose.foundation:foundation'
// or only import the main APIs for the underlying toolkit systems,
// such as input and measurement/layout
implementation 'androidx.compose.ui:ui'
// Android Studio Preview support
implementation 'androidx.compose.ui:ui-tooling-preview'
debugImplementation 'androidx.compose.ui:ui-tooling'
// UI Tests
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
debugImplementation 'androidx.compose.ui:ui-test-manifest'
// Optional - Add window size utils
implementation 'androidx.compose.material3.adaptive:adaptive'
// Optional - Integration with activities
implementation 'androidx.activity:activity-compose:1.13.0'
// Optional - Integration with ViewModels
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0'
// Optional - Integration with LiveData
implementation 'androidx.compose.runtime:runtime-livedata'
// Optional - Integration with RxJava
implementation 'androidx.compose.runtime:runtime-rxjava2'
}
Kotlin
dependencies {
val composeBom = platform("androidx.compose:compose-bom:2026.04.01")
implementation(composeBom)
androidTestImplementation(composeBom)
// Choose one of the following:
// Material Design 3
implementation("androidx.compose.material3:material3")
// or skip Material Design and build directly on top of foundational components
implementation("androidx.compose.foundation:foundation")
// or only import the main APIs for the underlying toolkit systems,
// such as input and measurement/layout
implementation("androidx.compose.ui:ui")
// Android Studio Preview support
implementation("androidx.compose.ui:ui-tooling-preview")
debugImplementation("androidx.compose.ui:ui-tooling")
// UI Tests
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-test-manifest")
// Optional - Add window size utils
implementation("androidx.compose.material3.adaptive:adaptive")
// Optional - Integration with activities
implementation("androidx.activity:activity-compose:1.13.0")
// Optional - Integration with ViewModels
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0")
// Optional - Integration with LiveData
implementation("androidx.compose.runtime:runtime-livedata")
// Optional - Integration with RxJava
implementation("androidx.compose.runtime:runtime-rxjava2")
}