-
Notifications
You must be signed in to change notification settings - Fork 0
Profile and edit profile screen UI #106
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -81,6 +81,7 @@ dependencies { | |||||
| implementation(libs.material3) | ||||||
| implementation("com.google.dagger:hilt-android:2.51.1") | ||||||
| implementation(libs.androidx.foundation) | ||||||
| implementation(libs.foundation) | ||||||
| kapt("com.google.dagger:hilt-android-compiler:2.51.1") | ||||||
| implementation("androidx.hilt:hilt-navigation-compose:1.0.0") | ||||||
| implementation("com.google.accompanist:accompanist-pager:0.24.0-alpha") | ||||||
|
|
@@ -103,6 +104,7 @@ dependencies { | |||||
| lintChecks(libs.compose.lint.checks) | ||||||
| implementation(platform("com.google.firebase:firebase-bom:34.3.0")) | ||||||
| implementation("com.google.firebase:firebase-analytics") | ||||||
| implementation("androidx.compose.material:material-icons-extended:1.6.0") | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Confirm BOM usage + explicit compose versions in this file.
rg -n 'compose-bom|androidx\.compose\..*:[0-9]+\.[0-9]+(\.[0-9]+)?|material-icons-extended' app/build.gradle.ktsRepository: cuappdev/score-android Length of output: 222 🏁 Script executed: # Read the build.gradle.kts file around the relevant lines
sed -n '70,120p' app/build.gradle.kts | cat -nRepository: cuappdev/score-android Length of output: 2477 🌐 Web query:
💡 Result: For
Citations: 🌐 Web query:
💡 Result:
If you want a contemporary stable Navigation Compose version from around that timeframe, Sources Remove explicit version from Line 107 pins version Proposed fix- implementation("androidx.compose.material:material-icons-extended:1.6.0")
+ implementation("androidx.compose.material:material-icons-extended")📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| } | ||||||
|
|
||||||
| apollo { | ||||||
|
|
||||||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: cuappdev/score-android
Length of output: 385
Remove duplicate Foundation dependency with conflicting versions
The version catalog aliases resolve
libs.foundationandlibs.androidx-foundationto the same module (androidx.compose.foundation:foundation) but with different versions (1.10.3 vs 1.9.4). Having both dependencies creates a version conflict risk. Keep only one alias, preferably the newer version.🤖 Prompt for AI Agents