Advertisement
Guest User

Flurry SDK Configuration

a guest
Jul 25th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  2.     // Seus códigos de inicialização aqui
  3.    
  4.     // Configurando Flurry SDK
  5.     [Flurry setDebugLogEnabled:YES];
  6.     [Flurry setAppVersion:@"1.0"]; // Aqui você define a versão do seu app
  7.     [Flurry setBackgroundSessionEnabled:YES];
  8.     [Flurry startSession:@"SUA_CHAVE_DE_ACESSO_AQUI"];
  9.    
  10.     return YES;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement