Skip to content

ADFA-3572 Swap in new branding for app icon and opening splash page#1197

Merged
hal-eisen-adfa merged 3 commits intostagefrom
ADFA-3572-Replace-app-logo-with-new-Code-On-the-Go-logo
Apr 17, 2026
Merged

ADFA-3572 Swap in new branding for app icon and opening splash page#1197
hal-eisen-adfa merged 3 commits intostagefrom
ADFA-3572-Replace-app-logo-with-new-Code-On-the-Go-logo

Conversation

@hal-eisen-adfa
Copy link
Copy Markdown
Collaborator

New PNGs at many display densities

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 17, 2026

Warning

Rate limit exceeded

@hal-eisen-adfa has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 28 minutes and 55 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 28 minutes and 55 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 7809945a-8a5d-4e26-8cd3-67202629f2fa

📥 Commits

Reviewing files that changed from the base of the PR and between b27f204 and 93c19aa.

📒 Files selected for processing (1)
  • resources/src/main/res/drawable/ic_launcher_foreground.xml
📝 Walkthrough

Walkthrough

Updated launcher icon assets across three XML drawable files: replaced the existing vector designs with new simplified graphics featuring a phone device with globe, adjusted the background color from gray to white, and modified the foreground composition with a cohesive phone-themed visual design.

Changes

Cohort / File(s) Summary
Launcher Icon Assets
layouteditor/src/main/res/drawable/ic_launcher.xml, resources/src/main/res/drawable/ic_launcher_background.xml, resources/src/main/res/drawable/ic_launcher_foreground.xml
Redesigned launcher icon with new phone and globe-themed vector paths. Updated background fill color from #808080 (gray) to #FFFFFF (white). Replaced foreground composition with simpler phone UI elements including rounded-rect body, screen, notch, navigation icons, and green globe accent. Removed license comment block from primary launcher file.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Suggested reviewers

  • itsaky-adfa
  • dara-abijo-adfa

Poem

🐰 Hop, hop—icons bright and new!
A phone with globe in verdant hue,
Gray fades to white, the design's true,
Fresh vectors dance, the launcher's due! 🌍📱

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The description 'New PNGs at many display densities' is vague and generic; it doesn't meaningfully convey what is actually being changed in the changeset (XML drawable assets for branding). Provide a more descriptive explanation of what the PNG assets replace and why they are being updated (e.g., mention the branding change to Code On the Go).
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: swapping in new branding for the app icon and splash page, which directly matches the XML drawable changes replacing launcher and foreground assets.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch ADFA-3572-Replace-app-logo-with-new-Code-On-the-Go-logo

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
resources/src/main/res/drawable/ic_launcher_background.xml (1)

8-9: Nit: closing </vector> tag shares a line with the path.

The </vector> closing tag is appended to the same line as the self-closing <path ... />, which makes the XML harder to read and diff.

Proposed formatting fix
-  <path android:fillColor="#FFFFFF"
-      android:pathData="M0,0h108v108h-108z"/>  </vector>
+  <path android:fillColor="#FFFFFF"
+      android:pathData="M0,0h108v108h-108z"/>
+</vector>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@resources/src/main/res/drawable/ic_launcher_background.xml` around lines 8 -
9, The XML closing tag for the vector is currently on the same line as the
self-closing <path ... /> element which harms readability; edit the drawable so
the </vector> closing tag is placed on its own line after the path element
(adjusting only the formatting of the <path ... /> and </vector> lines) to make
the XML easier to read and diff while preserving the existing <path
android:fillColor=... android:pathData=.../> content.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@layouteditor/src/main/res/drawable/ic_launcher.xml`:
- Around line 9-19: The white circular background defined by the circle path
(android:pathData starting "M206.6,206.6..." with radius 206.6) is smaller than
the translated phone body group (the <group> with android:translateX="95.375"
and the phone <path> whose rect goes to 222.45×413.2), so the blue phone (<path>
inside that group) extends outside the circle; fix by either reducing the phone
group's translation/scale (adjust android:translateX and/or add
android:scaleX/android:scaleY on the <group>) or shrink the phone <path>
dimensions so all extents fall within the circle radius, or remove the circle if
you intend a square badge—update the <group> transform or the phone <path>
coordinates accordingly to ensure the phone fits entirely inside the circle.

In `@resources/src/main/res/drawable/ic_launcher_foreground.xml`:
- Around line 6-49: The foreground artwork (the <group> transform using
android:scaleX/android:scaleY and android:translateX/android:translateY) scales
and translates the phone body path (the large path with android:pathData
starting "M34.04,0 ...") so parts (notch and nav buttons) fall outside the
adaptive-icon safe zone; reduce the group's scale from 2.581 to about 2.0 and
adjust translateX/translateY to recenter the phone body within the safe bounds
(approximately viewport coords 311→1289), by editing the <group> attributes
(android:scaleX, android:scaleY, android:translateX, android:translateY) until
the phone body path and its notch/home/nav paths are fully inside the safe area.

---

Nitpick comments:
In `@resources/src/main/res/drawable/ic_launcher_background.xml`:
- Around line 8-9: The XML closing tag for the vector is currently on the same
line as the self-closing <path ... /> element which harms readability; edit the
drawable so the </vector> closing tag is placed on its own line after the path
element (adjusting only the formatting of the <path ... /> and </vector> lines)
to make the XML easier to read and diff while preserving the existing <path
android:fillColor=... android:pathData=.../> content.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 48d53fba-7fd4-4f66-a9f9-1aae2fd1784d

📥 Commits

Reviewing files that changed from the base of the PR and between b4b73dc and b27f204.

⛔ Files ignored due to path filters (17)
  • app/src/main/ic_launcher-playstore.png is excluded by !**/*.png
  • resources/src/main/ic_launcher-playstore.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-hdpi/ic_launcher.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-hdpi/ic_launcher_foreground.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-hdpi/ic_launcher_round.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-mdpi/ic_launcher.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-mdpi/ic_launcher_foreground.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-mdpi/ic_launcher_round.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xhdpi/ic_launcher.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xhdpi/ic_launcher_round.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxhdpi/ic_launcher.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxhdpi/ic_launcher_round.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxxhdpi/ic_launcher.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png is excluded by !**/*.png
  • resources/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png is excluded by !**/*.png
📒 Files selected for processing (3)
  • layouteditor/src/main/res/drawable/ic_launcher.xml
  • resources/src/main/res/drawable/ic_launcher_background.xml
  • resources/src/main/res/drawable/ic_launcher_foreground.xml

Comment thread layouteditor/src/main/res/drawable/ic_launcher.xml
Comment thread resources/src/main/res/drawable/ic_launcher_foreground.xml Outdated
Copy link
Copy Markdown
Contributor

@Daniel-ADFA Daniel-ADFA left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love it!

@hal-eisen-adfa hal-eisen-adfa merged commit 2b853ff into stage Apr 17, 2026
3 of 4 checks passed
@hal-eisen-adfa hal-eisen-adfa deleted the ADFA-3572-Replace-app-logo-with-new-Code-On-the-Go-logo branch April 17, 2026 06:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants