Is there anything new with the zip plugin?
I have used it before, with success, now it just hangs.
I’m using 2017.3025
The plugin is identified in build.settings
plugins = { ["plugin.zip"] = { publisherId = "com.coronalabs" }, ["plugin.OneSignal"] = { publisherId = "com.onesignal", }, ["plugin.google.play.services"] = { publisherId = "com.coronalabs", supportedPlatforms = { android=true } }, },
and
called in the source:
local options = { zipFile = event.response.filename, zipBaseDir = system.TemporaryDirectory, dstBaseDir = system.DocumentsDirectory, listener = unzipAppIcon, } stopSpinner() print("downloadAppIcon: got file: going unzip") zip.uncompress( options ) print("downloadAppIcon: back from uncompress")
I get the first print - going unzip, but never the 2nd.
I also never get into the listener.
thoughts?
thanks in advance