RPG Maker Plugin version: 1.20.40 and higher
Affected games: Pokémon Essentials, LonaRPG, TES based
Description: Some Android 8.1 devices still experiencing Zlib::StreamError error, also Android 14 devices encounter Zlib::DataError and other related issues (even after updating to 1.20.53 and higher)
Maybe add a setting that will override those methods?
preload
sample:
unless $use_zlib
MKXP.puts("Overriding Zlib (de)compression methods")
module Zlib
class Inflate
def self.inflate(string)
MKXP.zinflate(string)
end
end
class Deflate
def self.deflate(string, level = 0)
MKXP.zdeflate(string)
end
end
end
end
Examples: