Glance 设置

此页面介绍如何设置开发环境以使用 Glance。

根据您要构建的“可查看内容”类型,在应用的模块中添加特定的 Glance 依赖项。

dependencies {
   // For AppWidgets support
   implementation "androidx.glance:glance-appwidget:1.1.0"

   // For interop APIs with Material 3
   implementation "androidx.glance:glance-material3:1.1.0"

   // For interop APIs with Material 2
   implementation "androidx.glance:glance-material:1.1.0"
}

激活 Compose 编译器

设置以下选项以确保 Glance 可用 Compose 编译器


android {
   buildFeatures {
      compose true
   }

   composeOptions {
      kotlinCompilerExtensionVersion = "1.5.14"
   }

   kotlinOptions {
      jvmTarget = "1.8"
   }
}

您可以在 Glance 的 发布页面 获取最新版本。