[Android App] 모듈 build.gradle 을 .kts 로 변경하기
: 기본적으로 Empty Compose Activity 를 생성한 상태에서 모듈 app 의 build.gradle 파일을 build.gradle.kts 파일로 변경시 수정사항을 정리해 봤습니다. kts 파일과 gradle 파일이 같이 있어도 빌드에는 문제가 없습니다. 목차 ▶ module: app 의 build.gradle 이름을 build.gradle.kts 로 변경후 Sync now 클릭합니다. 아래와 같은 에러가 발생합니다. \app\build.gradle.kts:2:8: Unexpected tokens (use ';' to separate expressions on the same line) plugins { id 'com.android.application' id 'org.jetbrains.ko..