Is there any way to detect from Lua if the app has been compiled with a Developer or Production certificate? If not, I would really appreciate to see this in an upcoming build. Thanks!
[Lua]
if system.getInfo(“buildIdentity”) == “Developer” then
doSomething()
elseif system.getInfo(“buildIdentity”) == “Distribution” then
doSomethingElse()
end
[/Lua]