관리 메뉴

나만을 위한 블로그

[Android] Attribute provider#androidx.core.content.FileProvider@authorities at AndroidManifest.xml:203:13-71 requires a placeholder substitution but no value for <com.example.패키지명> is provided. app main manifest (this file), line 202 에러 해결 본문

Android

[Android] Attribute provider#androidx.core.content.FileProvider@authorities at AndroidManifest.xml:203:13-71 requires a placeholder substitution but no value for <com.example.패키지명> is provided. app main manifest (this file), line 202 에러 해결

참깨빵위에참깨빵_ 2020. 6. 22. 15:28
728x90
반응형

내 경우 이 에러는 <provider>를 써서 갤러리, 카메라에서 이미지를 가져오기 위한 코드를 짠 후 앱을 빌드할 때 나타났다.

 

먼저 에러 뜻을 알기 위해 번역기로 돌려봤다.

 

- 자리 표시자 대체가 필요하지만 <com.example. 패키지명>에 대한 값은 제공되지 않습니다.

 

 

그리고 스택오버플로우를 찾아봤지만 딱히 해결책은 보이지 않아서 혹시나 하는 마음에 아래와 같이 해봤다.

먼저 앱 수준 gradle 파일 상단을 보면 이런 항목이 있다.

 

defaultConfig {
        applicationId "com.example.my.app"
        ...
    }

매니페스트에 applicationId 속성이 있는 defaultConfig란 중괄호가 있다. 그리고 난 <provider>에 이렇게 썼었다.

 

android:authorities="${com.example.패키지명}.provider"

이것을 이렇게 바꿨다.

 

android:authorities="com.example.패키지명.provider"

 

그 후 빌드하니 정상적으로 돌아갔다. 갤러리와 카메라에서 이미지를 가져오는 것 또한 잘 됐다.

반응형
Comments