Chore/#4 build logic#9
Open
lyh5427 wants to merge 6 commits into
Open
Conversation
Co-authored-by: Cursor <cursoragent@cursor.com>
…m-1-Android into chore/#4-build-logic # Conflicts: # app/build.gradle.kts # build-logic/build.gradle.kts # build-logic/settings.gradle.kts # build.gradle.kts # gradle/libs.versions.toml # settings.gradle.kts
Collaborator
Author
|
병합 충돌 수정중에 Spotless convention plugin이 app module에 누락되어 CI가 실패해 해당 이슈 수정 완료하였습니다. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚩 연관 이슈
closed #6
📝 작업 내용
build-logic모듈 구성settings.gradle.kts에includeBuild("build-logic")추가libs.versions.toml[plugins]섹션으로 이동:app모듈 빌드 스크립트 간소화build.gradle.kts→dminus14.android.application플러그인 1줄 적용으로 변경📖 의존성 추가
okhttplogging-interceptorroom-runtimeroom-ktxroom-compiler🛠️ 컨벤션 플러그인 추가
dminus14.android.application:appdminus14.android.librarycore,data등dminus14.android.featurefeature-*dminus14.android.composedminus14.android.hiltdminus14.android.roomdminus14.android.networkdminus14.jvm.library:domain등🤔 사용법
Application 모듈 (
:app)plugins { id("dminus14.android.application") }Feature 모듈 (
:feature-home등)plugins { id("dminus14.android.feature") }Data 모듈 (Network + Room + Hilt)
plugins { id("dminus14.android.library") id("dminus14.android.hilt") id("dminus14.android.network") id("dminus14.android.room") }Domain 모듈 (순수 Kotlin)
plugins { id("dminus14.jvm.library") }#참고사항
:data, ':domain` 모듈은 별도 이슈로 등록해 개발 진행하겠습니다.