Is Bolts relevant in 2022 for handling simple deeplinks opening from Facebook?
Is Bolts-ObjC deprecated? It seems the last update was in 2020.
In README, there's a deprecated AppDelegate method mentioned for handling App Links:
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication
annotation:(id)annotation {
Do we need to use this method? According to Apple documentation, it was deprecated, and Apple encourages us to use the application:openURL:options:
method instead of this one.
And do we need to use Bolts to parse and handle App Links that can come from Facebook? Or are there simple ways?
My main point - is Bolts still relevant in 2022 for handling simple deeplinks opening from Facebook?