Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 Pull Request는 앱의 분석 추적 인프라를 전면적으로 개편하고, 새로운 '나만아니면돼' 이벤트 관련 UI를 추가합니다. 기존의 단일 로거 대신, 여러 분석 플랫폼에 유연하게 데이터를 전송할 수 있는 모듈화된 Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
이번 PR은 '나만 아니면 돼' 이벤트 팝업과 툴팁을 추가하고, 기존의 EventLogger를 새로운 AnalyticsTracker 추상화 계층으로 대체하는 대규모 리팩토링을 포함하고 있습니다. 전반적으로 새로운 기능 구현과 분석 시스템 개선이 잘 이루어졌습니다. 특히 분석 로깅을 추상화하여 Firebase, PostHog 등 다양한 분석 도구에 유연하게 대응할 수 있도록 구조를 개선한 점이 인상적입니다. 몇 가지 유지보수성 향상을 위한 제안 사항을 남겼으니 확인 부탁드립니다.
| const val BOTTOM_NAVIGATION_ITEM_COUNT = 4 | ||
| const val ANYONE_BUT_ME_MENU_INDEX = 2 |
| val selectedCollege = | ||
| college?.takeUnless { it.collegeId == -1 || it.collegeName.isBlank() || it.collegeName == "단과대" } | ||
| val selectedDepartment = | ||
| department?.takeUnless { | ||
| it.departmentId == -1 || it.departmentName.isBlank() || it.departmentName == "학과" | ||
| } |
| Intent(context, WebViewActivity::class.java).apply { | ||
| putExtra(WebViewActivity.EXTRA_URL, context.getString(R.string.anyone_but_me_url)) | ||
| putExtra(WebViewActivity.EXTRA_TITLE, context.getString(R.string.nav_anyone_but_me)) | ||
| putExtra("SCREEN_ID", ScreenId.ANYONE_BUT_ME_MAIN.name) |
| style = TextStyle( | ||
| fontFamily = pretendardMedium, | ||
| fontWeight = FontWeight.Medium, | ||
| fontSize = 12.sp, | ||
| lineHeight = 18.sp | ||
| ) |
775a6a9 to
03b665d
Compare
03b665d to
fe7a82f
Compare
콘피그 써야하나? 했는데 인앱메세지란것도 있네요 ㄷㄷ |
Summary
나만아니면돼 이벤트 팝업을 하드코딩해 추가했습니다.
이런 일이 많이 없을 테니 팝업을 지울 때는 업데이트를 다시 하는거로...
Describe your changes