11.15 (if issue is Swift related)Cocoapods version 1.7.0decreasing initializing SDK on startup.
SDK can be lazy initializing.
this SDK takes time to be initialized
just play instruments with an app was integrated the SDK.
As mention in WWDC to avoiding some concern about using +[Class load]. may this block function be in the initialize?
// to using
+ (void)initialize
// rather than
+ (void)load
{
if ([FBSDKSettings isAutoInitEnabled]) {
// when the app becomes active by any means, kick off the initialization.
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(initializeWithLaunchData:)
name:UIApplicationDidFinishLaunchingNotification
object:nil];
}
}

At a glance this seems reasonable and like a good idea. If you are able, please open a pull request with this change and we will make sure it is reviewed in a timely fashion. :)
At a glance this seems reasonable and like a good idea. If you are able, please open a pull request with this change and we will make sure it is reviewed in a timely fashion. :)
Thanks for proposing a PR.
but I can't push the new branch.
_> haven't the correct access rights._
You can make a fork of the repo, commit changes on a branch there, and then open a pr to this repo from that branch. It鈥檚 worth learning as this is an essential technique for open source contributions to any library. 馃榾
https://help.github.com/en/articles/creating-a-pull-request-from-a-fork
Oh my...
馃槀
Thanks for remind
Most helpful comment
At a glance this seems reasonable and like a good idea. If you are able, please open a pull request with this change and we will make sure it is reviewed in a timely fashion. :)