Android Programming Press on the image to return to the main documentation page.

iAppTracker

List of types:

AppTracker

AppTracker


Events:

OnModuleLoaded (Placement As String)
OnModuleFailed (Placement As String, ErrorCode As String, IsCached As Boolean)
OnModuleCached (Placement As String)
OnModuleClosed (Placement As String)
OnModuleClicked (Placement As String)
OnMediaFinished (ViewCompleted As Boolean)

Members:


  Initialize (ApiKey As String, EnableAutoRecache As Boolean)

  IsAdReady (Placement As String) As Boolean

  LoadModule (Placement As String, Page As Page)

  LoadModuleToCache (ModuleName As String)

  LoadModuleToCacheWithData (ModuleName As String, UserData As String)

  LoadModuleWithData (Placement As String, Page As Page, UserData As String)

Members description:

Initialize (ApiKey As String, EnableAutoRecache As Boolean)
Initializes the object.
ApiKey - Developer key from Leadbolt console.
EnableAutoRecache - True for allowing SDK to automatically cache next Ad
IsAdReady (Placement As String) As Boolean
Check if an Ad placement is available for display
LoadModule (Placement As String, Page As Page)
Displays a module that was previously loaded with LoadModuleToCache.
LoadModuleToCache (ModuleName As String)
Loads a module to the cache.
Placement - inapp for interstitial ads or video for video ads.
LoadModuleToCacheWithData (ModuleName As String, UserData As String)
Loads a module to the cache.
Placement - inapp for interstitial ads or video for video ads.
UserData - any additional user data to be passed back to server
LoadModuleWithData (Placement As String, Page As Page, UserData As String)
Displays a module that was previously loaded with LoadModuleToCache.
UserData - any additional user data to be passed back to server
Top