Returns an intent object sent to the app.
Example - Get received intent data
function OnStart()
{
var int = app.GetIntent();
app.Alert( JSON.stringify( int ));
}
from native import app
def OnStart():
int = app.GetIntent()
app.Alert( JSON.stringify( int ))