Forward from: Andlua+ Officials
⚠️DETECTOR VERSION NAME APP
function GetAppInfo(x)
import "android.content.pm.PackageManager"
local info = activity.getPackageManager().getPackageInfo(x, 0).versionName
return info
end
Example Use :
print(GetAppInfo("com.package.name"))
#LEARNTOCODE
function GetAppInfo(x)
import "android.content.pm.PackageManager"
local info = activity.getPackageManager().getPackageInfo(x, 0).versionName
return info
end
Example Use :
print(GetAppInfo("com.package.name"))
#LEARNTOCODE