public class

ApplicationDelegate

extends Object
java.lang.Object
   ↳ com.neomades.platform.ApplicationDelegate

Class Overview

Specific application delegate. May be use in the specific code of an application to perform operations on the native application instance.

Summary

Public Constructors
ApplicationDelegate()
Public Methods
void onApplicationStarted(Application application, Object args)
Enables to perform operation on the native application instance when the application has just launched.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ApplicationDelegate ()

Public Methods

public void onApplicationStarted (Application application, Object args)

Enables to perform operation on the native application instance when the application has just launched.

The event is triggered when entering the following native methods:

  • iOS: UIApplicationDelegate.application:(UIApplication) didFinishLaunchingWithOptions:(NSDictionary)
  • Android: Activity.onCreate(Intent)

Parameters
application the neomad application instance. See getSpecificApplication(Application) to get native instance.
args native parameter (should be casted in specific code implementation)
  • iOS: NSDictionary
  • Android: Intent