本頁面說明如何設定開發環境,以使用 Glance。您可以前往版本資訊頁面取得最新可用版本。
根據您要建構的「glanceable」類型,在應用程式模組中新增特定 Glance 依附元件。
dependencies {
// For AppWidgets support
implementation "androidx.glance:glance-appwidget:1.1.1"
// For interop APIs with Material 3
implementation "androidx.glance:glance-material3:1.1.1"
// For interop APIs with Material 2
implementation "androidx.glance:glance-material:1.1.1"
}
啟用 Compose Compiler
設定下列選項,確保 Compose 編譯器可供 Glance 使用:
android {
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
kotlinOptions {
jvmTarget = "1.8"
}
}