You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in unit 4 , pathway 2, chapter "Practice: add a view model to dessert clicker", subsection 3 (Set up dependencies), it has been instructed to add following variable to the build.gradle file ->
buildscript {
ext {
...
lifecycle_version = '2.5.1'
}
}
but it should have been like this ->
buildscript {
ext[
"lifecycle_version"] = "2.5.1"
}
The text was updated successfully, but these errors were encountered:
in unit 4 , pathway 2, chapter "Practice: add a view model to dessert clicker", subsection 3 (Set up dependencies), it has been instructed to add following variable to the build.gradle file ->
buildscript {
ext {
...
lifecycle_version = '2.5.1'
}
}
but it should have been like this ->
buildscript {
ext[
The text was updated successfully, but these errors were encountered: