반응형
Android studio에서 다른 소스를 import 했을 때 발생했다.
빌드를 하면 @Nullable을 사용하는 소스에서 에러가 난다.
Nullable을 인식하지 못해서 발생했는데 하기와 같이 수정해서 해결했다.
1) build.gradle에 implementation 'androidx.annotation:annotation:1.1.0' 추가
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
2) @Nullable을 사용하는 소스코드에 import androidx.annotation.Nullable 추가
반응형
댓글