Notice
Recent Posts
Recent Comments
Link
투케이2K
235. (TWOK/ERROR) [Android] IllegalArgumentException: Failed to find configured root that contains 본문
투케이2K 에러관리
235. (TWOK/ERROR) [Android] IllegalArgumentException: Failed to find configured root that contains
투케이2K 2024. 4. 24. 19:40[환경 설정 및 설명]
프로그램 : AndroidStudio
설 명 : [Android] IllegalArgumentException: Failed to find configured root that contains
[에러 원인]
1. 안드로이드 내부 저장소 접근 및 파일 공유 수행 시 파일 프로바인더 external path 가 지정 되어 있지 않아서 발생하는 이슈
W/System.err: java.lang.IllegalArgumentException: Failed to find configured root that contains /data/data/com.example.javaproject/files/test.txt
W/System.err: at androidx.core.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:825)
W/System.err: at androidx.core.content.FileProvider.getUriForFile(FileProvider.java:450)
W/System.err: at com.example.javaproject.A_Intro.onCreate(A_Intro.java:346)
[해결 방법]
1. AndroidManifest.xml 파일에 provider 지정
<application
android:name=".A_Application"
android:allowBackup="false" >
<!-- ============================================================= -->
<!-- [프로 바인더 지정 : 외부 저장소 접근] -->
<!-- ============================================================= -->
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
</application>
2. provider_paths.xml 파일에 파일 path 추가 지정 (external)
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="files" path="."/>
<external-files-path name="external_files_path" path="." />
<external-path name="external_files" path="."/>
</paths>
반응형
'투케이2K 에러관리' 카테고리의 다른 글
Comments