AndroidStudio Gradle DSL에서 alias(libs.x.x.x) 에러

입질쾌감 물때표

Gradle 플러그인 쪽에서 아래와 같이 libs 빨간줄이 생겼을 경우
val Project.libs: LibrariesForLibs’ can’t be called in this context by implicit receiver. Use the explicit one if necessary

결론적으로는 gradle-wrapper.properties의 gradle 버전을 올려줘야 함

# Tue Jul 04 10:26:52 KST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

그래도 에러를 계속 표시하고 있는 경우,

@Suppress("DSL_SCOPE_VIOLATION")

상단에 Suppress 애노테이션을 추가

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다