Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

glance rc01 #95

Merged
merged 1 commit into from
Jul 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,13 @@ dependencies {
implementation(uiTooling)
implementation(foundationLayout)
implementation(navigation)
implementation(glance)

implementation(material3)
implementation(material3WindowSizeClass)
}

implementation("androidx.glance:glance-appwidget:1.0.0-beta01")



with(Deps.Koin) {
Expand Down
5 changes: 4 additions & 1 deletion buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ object Versions {
const val navCompose = "2.6.0"
const val composeMaterial3 = "1.1.1"
const val composeDesktop = "1.5.0-beta01"
const val glance = "1.0.0-rc01"

const val realm = "1.10.2"

Expand All @@ -29,7 +30,7 @@ object Versions {

object AndroidSdk {
const val min = 21
const val compile = 33
const val compile = 34
const val target = compile
}

Expand All @@ -48,6 +49,8 @@ object Deps {

const val material3 = "androidx.compose.material3:material3:${Versions.composeMaterial3}"
const val material3WindowSizeClass = "androidx.compose.material3:material3-window-size-class:${Versions.composeMaterial3}"

const val glance = "androidx.glance:glance-appwidget:${Versions.glance}"
}

object Koin {
Expand Down