fix(gradle): downgrade Glance back to v1.0.0

This is resulting in some weird miscompilation that results
in release builds having an unitialized `viewModel` field in
`WidgetReceiver` which indicates a miscompilation of the
Whetstone code surrounding it.
This commit is contained in:
Harsh Shandilya 2024-02-13 21:58:56 +05:30
parent 8d78e1910a
commit 719d317263
2 changed files with 7 additions and 3 deletions

View file

@ -33,8 +33,6 @@
"matchPackagePatterns": [
"^androidx.*",
],
"matchPackageNames": [
],
"groupName": "AndroidX"
},
{
@ -50,6 +48,12 @@
],
"allowedVersions": "!/.*-1-8$/",
},
{
"matchPackagePatterns": [
"^androidx.glance",
],
"allowedVersions": "<=1.0.0",
},
],
"regexManagers": [
{

View file

@ -7,7 +7,7 @@ coil = "2.5.0"
composeCompiler = "1.5.9"
coroutines = "1.8.0-RC2"
dagger = "2.50"
glance = "1.1.0-alpha01"
glance = "1.0.0"
junit = "5.10.2"
konvert = "3.0.0"
kotlin = "1.9.22"