해결된 질문
작성
·
2.4K
0
로그 에러 메세지
----------------------------------------------------
Caused by: java.lang.IllegalArgumentException: Failed to find configured root that contains /null/불량1579517621338.jpg <--(파일이름)
----------------------------------------------------
xml 파일
---------------------------------------------------
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="storage/emulated/0"
path="."/>
</paths>
--------------------------------------------------------
메인 엑티비티 문제가 되는 매서드
--------------------------------------------------------
public void button(View v) {
Intent intent = new Intent((MediaStore.ACTION_IMAGE_CAPTURE));
String name = "/불량" + System.currentTimeMillis() + ".jpg";
String pic_path = path + name;
File file = new File(pic_path);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
contenturi = FileProvider.getUriForFile(this, "co.co", file);
} else {
contenturi = contenturi.fromFile(file);
}
intent.putExtra(MediaStore.EXTRA_OUTPUT, contenturi);
startActivityForResult(intent, 0);
}
------------------------------------------------------
manifest provider 부분
-----------------------------------------------------
<provider
android:authorities="co.co"
android:name="androidx.core.content.FileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/xml"/>
</provider>
-------------------------------------------------------
구글링 해보니까
xml 파일에 이상이 있다는것 같은데요.
정상 작동하는 앱의 코드를 전부 복사 붙여넣기 해도 저 에러가 뜹니다.
저 에러는 어떤 경우에 발생하는 건가요?