[Admob] Native Ad 템플릿 모듈 import 시 CanIgnoreReturnValue 관련 에러 해결

모듈을 import하고 디펜던시를 추가하고 빌드하면 아래와 같은 에러가 발생한다.

error: package com.google.errorprone.annotations does not exist
import com.google.errorprone.annotations.CanIgnoreReturnValue;
                                        ^

nativetemplates 모듈의 build.gradle (app 모듈의 build.gradle이 아니라)에 아래 내용을 추가해주면 된다.

implementation 'com.google.errorprone:error_prone_annotations:2.16'

Leave a Comment

Your email address will not be published. Required fields are marked *