Difference between revisions of "Flurry.startSession"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Starts the Flurry session with your API key. To create an account on Flurry and to obtain the A...")
 
Line 9: Line 9:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= flurry.startSession(apiKey,)
+
flurry.startSession(apiKey)
 
</source>
 
</source>
'''apiKey:''' (string) The Flurry API key. ''''''<br/>
+
'''apiKey''': (string) The Flurry API key. ''''''<br/>

Revision as of 11:16, 23 August 2018

Available since: Gideros 2011.6

Description


Starts the Flurry session with your API key. To create an account on Flurry and to obtain the API key specific to your application,
please visit [1](http://www.flurry.com) and follow the instructions there.

You need to call this function once after your application starts. For example, `init.lua` is suitable to call this function.

 flurry.startSession(apiKey)

'apiKey: (string) The Flurry API key. '