반응형
assets 에 파일을 집어넣고, 해당 파일을 앱에서 읽는 부분에서 아래와 같은 에러가 발생했다.
java.io.FileNotFoundException: This file can not be opened as a file descriptor; it is probably compressed
문제의 해결은 gradle build 옵션에서 특정 확장자를 압축하지 말라는 지시를 추가하여 해결되었다.
build.gradle (:app)
android {
...
aaptOptions {
noCompress "tflite"
}
}
728x90
'프로그래밍 > Android' 카테고리의 다른 글
adb.exe not a valid win32 application. CreateProcess error (0) | 2021.12.12 |
---|---|
Volley : GET request 에서는getParams 는 불리지 않는다. (0) | 2021.12.06 |
[Android] Error type 3 Activity class does not exist. (0) | 2020.02.20 |
Kotlin 북마크 (0) | 2019.12.24 |
[Android|Kotlin] Gradle Sync Issue: Android Gradle plugin supports only Kotlin Gradle plugin version ... and higher (0) | 2019.11.12 |