===== GetAppPath =====
//(Information and examples taken from the DroidScript documentation)//
==== Description ====
The **GetAppPath** method gets the full folder path of the running application.
app.GetAppPath();
----
==== Example ====
function OnStart()
{
path = app.GetAppPath();
app.ShowPopup( path );
}