https://github.com/jasonnam/appdelegate
Break down app delegate into smaller and single-purpose plugins.
https://github.com/jasonnam/appdelegate
appdelegate cocoapods ios plugin
Last synced: about 1 month ago
JSON representation
Break down app delegate into smaller and single-purpose plugins.
- Host: GitHub
- URL: https://github.com/jasonnam/appdelegate
- Owner: jasonnam
- License: mit
- Created: 2019-05-09T14:39:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-04T18:53:27.000Z (over 6 years ago)
- Last Synced: 2024-10-14T09:18:49.999Z (over 1 year ago)
- Topics: appdelegate, cocoapods, ios, plugin
- Language: Swift
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# AppDelegate
[](https://github.com/jasonnam/AppDelegate/releases)
[](https://cocoapods.org/pods/AppDelegate)
[](https://travis-ci.com/jasonnam/AppDelegate)
Break down app delegate into smaller and single-purpose plugins.
## Installation
### CocoaPods
```ruby
pod 'AppDelegate'
```
## Usage
```swift
import UIKit
@UIApplicationMain
final class AppDelegateMain: AppDelegate {
override init() {
super.init()
plugins = [
AppDelegateLog(),
AppDelegateFacebookSDK(),
AppDelegateUniversalLink(),
AppDelegatePushNotification()
]
}
}
```
## License
AppDelegate is released under the MIT license. [See LICENSE](https://github.com/jasonnam/AppDelegate/blob/master/LICENSE) for details.