R8 FAQR8 은 ProGuard 와 동일한 문법을 사용즉 ProGuard 와 호환 되도록 최대화하지만 다른 부분도 있음. R8 은 최적화 모드가 다름 (2가지 제공)Compatibility 모드 와 Full 모드를 제공Compatibility 모드가 defaultR8 uses the same configuration specification language as ProGuard, and tries to be compatible with ProGuard. However as R8 has different optimizations it can be necessary to change the configuration when switching to R8. R8 provides two modes, R8 co..
ChatGPT 로 Commit Message 생성하기 유용한 커밋 메세지 commit 메세지를 개발, 리팩토링 진행 시 작업을 세분화하고 이력을 명확히 남기고 한 작업은 보통 한개의 jira 와 관련이 있지만. QA 이슈 지라가 발행되는 경우 jira 번호 링크하여 추적에 도움 개발, 버그 수정, 새기능 추가, 리팩토링 을 한번에 하는 것이 아닌 나눠 수행하도록 상기 코드 리뷰 시, 팀원들의 이해를 돕고 (불가피하게 많은 량의 코드를 pr로 올리는 경우 commit msg가 도움) 문제 추적을 용이하게 하고(필요시 각 단위작업 rollback 용이성 확보) 하기 위해 작성을 하곤 하는데요. 변수명, 함수명 못지않게 고민이 되는 것이 commit 메세지 입니다. 이번 글 에서는 Commit Message ..
키워드 분포란? "키워드 분포"란 특정 키워드가 웹페이지의 내용 전반에 골고루 퍼져 있는지를 나타내는 용어입니다. 예를들어 워드프레스 플러그인 인 Yoast SEO Premium은 키워드 분포를 최적화하고, 사용자에게 텍스트의 키워드 사용이 균형잡혀 있는지 알려줍니다. 이를 통해 검색 엔진이 웹페이지의 주제와 관련성을 더 정확하게 인식하게 도와주며, 결국 웹사이트의 검색 순위를 높이는데 도움을 줍니다. 파이썬 스크립트로 구현해보기 파이썬을 사용하여 텍스트 파일에서 키워드 분포를 측정하는 코드를 작성해 드리겠습니다. 아래 코드는 텍스트 파일을 읽어 특정 키워드의 분포를 계산하고 결과를 출력해 줍니다. import re def keyword_distribution(filename, keyword): with..
Testing in Jetpack Compose 2. What to test? 테스트 해볼 것들 Test that the tabs show the intended icon and text Test that the animation matches the spec Test that the triggered navigation events are correct Test the placement and distances of the UI elements in different states Take a screenshot of the bar and compare it with a previous screenshot 3. Create a simple UI test Create the TopAppBarTest fil..
RallyDestinations 이번 코드랩에서 배울 내용 Basics of using Jetpack Navigation with Jetpack Compose Navigating between composables Integrating a custom tab bar composable into your navigation hierarchy Navigating with arguments Navigating using deep links Testing navigation 샘플 프로젝트는 네비게이션이 되고 있지만, 사실 컴포즈 네비게이션을 사용한 구현이 아니다. 이를 컴포즈 네비게이션으로 구현해보자. Migrating to Compose Navigation 점진적으로 마이그레이션을 해보자! 의존성 추가 해주기..