본문 바로가기

개발 노트/Kotlin

[Android/Kotlin] odm.getFile: File not found.: /data/user/0/com.google.android.apps.messaging/files/httpft_pending: open failed: ENOENT (No such file or directory) 에러

 

API를 받아오는 작업을 하던중에 아래와 같은 오류가 발생했다.

이 메시지는 파일 시스템에서 특정 파일이 존재하지 않아 발생하는 오류라고 하는데..

 

 

 

Manifest파일에 아래와 같은 코드한줄을 작성해서 오류를 해결했다

<application
   ...
    android:requestLegacyExternalStorage="true"
    
   ...
</application>

Manifest