- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[Plot initializeWithLaunchOptions:launchOptions delegate:self];
if ([[Divers getAccount] token] != nil)
{
NSLog(@"enable");
[Plot enable];
}
else
{
NSLog(@"disable");
[Plot disable];
}
[....]
}
Here's what happens :
2015-10-16 10:54:23.796 BonsPlans[23953:1864909] disable
2015-10-16 10:54:23.797 BonsPlans[23953:1864909] Plot| Plot disabled
2015-10-16 10:54:23.823 BonsPlans[23953:1864990] Plot| Plot enabled
Is it normal ?
Thanks,
Alexandre
--
You received this message because you are subscribed to the Google Groups "plot-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to plot-users+...@googlegroups.com.
Visit this group at http://groups.google.com/group/plot-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/plot-users/8e012263-20f8-4cd8-a076-77625798374b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[Plot initializeWithLaunchOptions:launchOptions delegate:self];
[...]
}
Here is the plogconfig.json :
{
"publicToken": "XXXXXXXX",
"enableOnFirstRun": false
}
Here is the logs :
2015-10-19 15:43:40.559 BonsPlans[14511:4396727] Plot| Plot enabled
Regards,
Alex