Marc-Antoine Hinse
Marc-Antoine Hinse
Hi, looks like the BitmapDecoder.cpp of Android 7+ has problems when decoding big asset files. The way I fixed it is by converting the Asset InputStream into a byte array....
I don't remember if that was it, but it was mostly fixed by this: >https://github.com/ldionmarcil/OSRSHelper/blob/d1311b93abb45b9c8a31697faab2c0fe28522363/app/src/main/java/com/sigseg/android/map/ImageSurfaceView.java#L54 ``` public void setInputStream(InputStream inputStream) throws IOException { if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { byte[] buffer =...