Back

GetPackageName

Hello World

Returns the package name of the APK.

app.GetPackageName() → string

Example - Show Package Name

function OnStart()
{
    var pkg = app.GetPackageName();
    app.Alert( pkg );
}
    Copy     Copy All       Run