PluggableApplicationDelegate
PluggableApplicationDelegate copied to clipboard
Smallest AppDelegate ever by using a decoupled-services based architecture. 🛠
fixes for Swift v.4.2 support
Hi, first nice idea, I appreciate this solution. for sure do you know that Xcode gives us warnings in `PluggableApplicationDelegate-Swift.h` due to `UIUserNotificationSettings` and `UILocalNotification` are deprecated since iOS 10....
Hi guys. It looks like this project is no longer supported (no updates, even no answers). But it's a great idea and I use it on my own projects. 👍🏻...
Great idea, really helps with organisation. I am seeing these warnings pop up in the debug log, however: `You've implemented -[ application:performFetchWithCompletionHandler:], but you still need to add "fetch" to...
Removed implementation of the following methods that where deprecated in iOS 9.0 as they will cause apps to crash when built with Xcode 9.3: open func application(_ application: UIApplication, handleOpen...
In line 91 of PluggableApplicationDelegate.swift there is the method called `open func application(_ app: UIApplication, public url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Boo` but this should be...
I think, you have logical mistake in will/didFinishLaunching methods. https://github.com/fmo91/PluggableApplicationDelegate/blob/e03cd1e487e363ec07d9bee24a3d4e19c09d7de5/PluggableApplicationDelegate/Classes/ApplicationServicesManager.swift#L36 Now application will be launched if one service has `true` result. Though execution should be ended if one service has...