Lua:targetIsAndroid
Jump to navigation
Jump to search
Returns true if the target process is running on the Android operating system.
Function Parameters
This function has no parameters.
Returns
boolean — True if the target process is running on Android, otherwise false.
Examples
if targetIsAndroid() then
print("Target process is running on Android")
else
print("Target process is not running on Android")
end