Android: Fixed assets:// access i.e. fixed .pck from assets://

This commit is contained in:
Benjamin Dobell
2025-11-07 23:38:54 +11:00
parent cb3af5afff
commit 84365402f8

View File

@ -106,6 +106,7 @@ internal class AssetData(context: Context, private val filePath: String, accessF
override fun seek(position: Long) { override fun seek(position: Long) {
try { try {
inputStream.reset();
inputStream.skip(position) inputStream.skip(position)
this.position = position this.position = position