Some problems were found with the configuration of task 에러 수정

1. 문제

Android Studio에서 앱을 빌드할 때 Some problems were found with the configuration of task ':app:generateSafeArgsDebug'에러로 컴파일이 실패하였습니다.

Some problems were found with the configuration of task ':app:generateSafeArgsDebug' (type 'ArgumentsGenerationTask').
  - Type 'androidx.navigation.safeargs.gradle.ArgumentsGenerationTask' property 'applicationId' is missing an input or output annotation.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

2. 해결 : 최신 버전으로 변경

문제 원인은 프로젝트의 Gradle에 선언한 navigation-safe-args-gradle-plugin:2.1.0 버전이 다른 의존성과 충돌이 발생하여 에러가 발생된 것 같았습니다.

dependencies {
    classpath "com.android.tools.build:gradle:7.0.4"
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
    classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0"

아래와 같이 현재 최신 버전인 2.3.5 버전으로 변경했더니 빌드가 성공하였습니다.

dependencies {
    classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0"

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha