הגדרה של 'בקצרה'

בדף הזה מוסבר איך להגדיר את סביבת הפיתוח כך שתשתמש ב-Glance.

מוסיפים את התלות הספציפית ב-Glance למודול של האפליקציה בהתאם לסוג ה-'glanceable' שרוצים ליצור.

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"
   }
}

אתם יכולים להוריד את הגרסה העדכנית ביותר של התכונה 'בקצרה' בדף הגרסאות של 'בקצרה'.