chore: AGP 9.0 / Kotlin 2.3.10 / Gradle 9.1.0 마이그레이션#443
Open
chore: AGP 9.0 / Kotlin 2.3.10 / Gradle 9.1.0 마이그레이션#443
Conversation
- Kotlin 2.3.10, AGP 9.0.0, Gradle 9.1.0으로 업그레이드
- KSP 2.3.6으로 업데이트 (Kotlin 2.3.x 호환)
- kapt → KSP 전환 (app, data, presentation, tosspayments)
- kotlinOptions → kotlin { compilerOptions } 블록으로 전환
- deprecated Gradle API 제거: task() → tasks.register(), buildDir → layout.buildDirectory
- applicationVariants (internal API) → androidComponents + SingleArtifact.APK로 APK 이름 커스텀 재구현
- composeOptions 블록 제거 (Compose Compiler Plugin이 처리)
- android.builtInKotlin=false, android.newDsl=false 플래그 추가 (KSP/KGP 호환성 확보 전까지 유지)
- 라이브러리 의존성 최신화
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Test Results 6 files 6 suites 0s ⏱️ Results for commit 93a682f. |
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.
Summary
task()→tasks.register()buildDir→layout.buildDirectorykotlinOptions→kotlin { compilerOptions }applicationVariants(internal API) →androidComponents+SingleArtifact.APKcomposeOptions블록 제거 (Compose Compiler Plugin이 처리)android.builtInKotlin=false,android.newDsl=false플래그 추가 (KSP/KGP 호환성 확보 전까지 유지, AGP 10.0에서 제거 예정)Test plan
./gradlew assembleDebug빌드 성공 확인app-debug-1.13.0-{hash}-{timestamp}.apk)./gradlew assembleRelease빌드 확인🤖 Generated with Claude Code