I am trying to reverse engineer an Android game to find out the logic behind their calculation.
After extraction of .apk file, there are lua script in /assets/lua folder and all of them have .lua extension. However if open with Text/HEX editor, they are not human readable.
For example: this file
The content of all files end with "droi.lua" signature, made me think this is not a LUA script but some sort of compressed LUA script for Android. And Android has a mechanism to compress file for publishing purpose.
Has anyone experienced this before? Is there a way to make such file readable?
Is there any method / program to decompress files extraced from .apk assets (such as png, lua etc)?