-
Notifications
You must be signed in to change notification settings - Fork 153
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
Migrate to e2e for starter branch #91
base: starter
Are you sure you want to change the base?
Conversation
9e92dfb
to
da1062c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
build.gradle.kts
Outdated
id("com.android.application") version "8.0.2" apply false | ||
id("com.android.library") version "8.0.2" apply false | ||
id("org.jetbrains.kotlin.android") version "1.8.21" apply false | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Remove blank line. It was added on this commit.
@@ -18,6 +18,7 @@ package com.example.affirmations | |||
import android.os.Bundle | |||
import androidx.activity.ComponentActivity | |||
import androidx.activity.compose.setContent | |||
import androidx.activity.enableEdgeToEdge | |||
import androidx.compose.foundation.layout.fillMaxSize | |||
import androidx.compose.material3.MaterialTheme |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import is unused. Is it needed?
window.statusBarColor = colorScheme.background.toArgb() | ||
WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars = !darkTheme | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed lets keep this for all the apps, if you have not updated the codelabs
c06e73a
to
e26ddf0
Compare
Hold off on merge until codelab is updated.