-
Notifications
You must be signed in to change notification settings - Fork 1
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
[CHORE/#310] 빌드로직 구현 수정 #316
Conversation
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.
Compiler Metrics Report 신기하네요,, 잘 써먹을 수 있도록 공부해야겠네요ㅎㅎ
저는 개인적으로 현재 방법이 좋다고 봅니다! 프로젝트 안에 Metrics를 계속 갱신하면 불필요한 커밋이랑 pr이 계속 발생할거 같아요,,
R 클래스 관련해선 댓글을 남겼는데 참고"만" 해주세요~
@@ -2,6 +2,7 @@ package com.terning.feature.dialog.cancel | |||
|
|||
import androidx.lifecycle.ViewModel | |||
import androidx.lifecycle.viewModelScope | |||
import com.terning.core.designsystem.R.string.server_failure |
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
라는 예약어를 사용하여 라이브러리의 이름을 지정하고 사용할 수 있어요!
import com.terning.core.designsystem.R.string.server_failure | |
import com.terning.core.designsystem.R as DesignSystemR |
위와 같이 라이브러리에 이름을 부여하면 코드에선 DesignSystemR.string.server_failure
로 사용이 가능합니다!
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.
오호 이에 대해선 몰랐네요!! 이 방법이 헷갈리지 않고 쓸 수 있는 것 같아요! 적용해보겠습니당
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.
이 문서들이 Compiler Metrics Report가 동작하여 생기는 것들이죠?
이 파일들이 깃허브에 올라오는건 불필요해보이네요..
각자 분석하는 용도로 사용하면 매우 좋을 것 같습니다!
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.
네! 이 파일들입니당
저도 깃허브에 올라오는 게 불필요하다고 생각해서 이대로 가도 될 것 같아요! 의견 감사합니당
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.
우와!! 수고하셨습니다!! 확실히 코드가 더 깔끔해진 것 같아요!!!
그리고 보고서 파일 위치는 현재처럼 가는게 좋다고 생각해요!!! 보고서는 깃허브에 올라가면 안될 것 같은 느낌이랄까요..?? 그리고 보고서가 추가되거나 변경될 때마다 불필요한 커밋이 생기는 것도 안좋아보여서요!!
feature 그래들마다 만약에 처음 명령어 실행 후, 코드가 수정되면 확인 부탁드려요🙏 @Hyobeen-Park @boiledEgg-s @arinming |
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.
확인했습니닷
⛳️ Work Description
📢 To Reviewers
(1) 서버통신 string 추출
R.string.server_failure
까지 임포트한 이유는 단순히com.terning.core.designsystem.R
로 임포트를 하면 기존의 R 클래스와 충돌이 생기더라구요.=> as 사용하는 방식으로 수정 완료
(2) Compose Compiler Metrics Report