The application's android Context object instance.
The currently active (loaded) android Activity. This property is automatically updated upon Activity events.
Initialized the android-specific application object with the native android.app.Application instance. This is useful when creating custom application types.
The android Application object instance provided to the init of the module.
Gets the orientation of the application. Available values: "portrait", "landscape", "unknown".
The name of the application package.
True if the main application activity is not running (suspended), false otherwise.
The main (start) Activity for the application.
Gets the system appearance. Available values: "dark", "light".
String value used when hooking to activityBackPressed event.
String value used when hooking to activityCreated event.
String value used when hooking to activityDestroyed event.
String value used when hooking to activityNewIntent event.
String value used when hooking to activityPaused event.
String value used when hooking to requestPermissions event.
String value used when hooking to activityResult event.
String value used when hooking to activityResumed event.
String value used when hooking to activityStarted event.
String value used when hooking to activityStopped event.
String value used when hooking to saveActivityState event.
Get a registered BroadcastReceiver, then you can get the result code of BroadcastReceiver in onReceiveCallback method.
A string containing the intent filter.
A basic method signature to hook an event listener (shortcut alias to the addEventListener method).
String corresponding to events (e.g. "propertyChange"). Optionally could be used more events separated by ,
(e.g. "propertyChange", "change").
Callback function which will be executed when event is raised.
An optional parameter which will be used as this
context for callback execution.
This event is raised on android application ActivityCreated.
This event is raised on android application ActivityDestroyed.
This event is raised on android application ActivityStarted.
This event is raised on android application ActivityPaused.
This event is raised on android application ActivityResumed.
This event is raised on android application ActivityStopped.
This event is raised on android application SaveActivityState.
This event is raised on android application ActivityResult.
This event is raised on the back button is pressed in an android application.
This event is raised when the Android app was launched by an Intent with data.
This event is raised when the Android activity requests permissions.
Register a BroadcastReceiver to be run in the main activity thread. The receiver will be called with any broadcast Intent that matches filter, in the main application thread. For more information, please visit 'http://developer.android.com/reference/android/content/Context.html#registerReceiver%28android.content.BroadcastReceiver,%20android.content.IntentFilter%29'
A string containing the intent filter.
A callback function that will be called each time the receiver receives a broadcast.
Unregister a previously registered BroadcastReceiver. For more information, please visit 'http://developer.android.com/reference/android/content/Context.html#unregisterReceiver(android.content.BroadcastReceiver)'
A string containing the intent filter with which the receiver was originally registered.
The abstraction of an Android-specific application object.