Hi all, does anyone know if the extractzip command works on an android device (when exported).?
i've made a zip file and used extractzip to extract the contents, which seems to work fine on windows and android when using the agk player.
however when i export the code to a .apk file and install - it stops working.
i've done some code to display the contents of the directory and it seems i can see the unzipped files when using the player, but i cant see them (they do not exist / or have not been unzipped) when i've exported the same code to an apk.
thanks in advance for any advice.
SetWindowTitle( "androidzip" )
SetWindowSize( 1024, 768, 0 )
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
ExtractZip( "media.zip", "" )
do
fn$=GetFirstFile()
sync()
sleep(1000)
if fn$ <> ""
Print("found:>> "+fn$)
endif
while fn$<>""
fn$=GetNextFile()
sync()
sleep(1000)
if fn$ <> ""
Print("found:>> "+fn$)
endif
endwhile
Sync()
loop