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 Compiler を有効にする

Compose コンパイラが Glance で使用できるように、次のオプションを設定します。


android {
   buildFeatures {
      compose true
   }

   composeOptions {
      kotlinCompilerExtensionVersion = "1.5.15"
   }

   kotlinOptions {
      jvmTarget = "1.8"
   }
}

利用可能な最新バージョンは、Glance のリリースページから入手できます。