-
Notifications
You must be signed in to change notification settings - Fork 3
/
AmplifyUtilsNotifications.podspec
28 lines (20 loc) · 1.17 KB
/
AmplifyUtilsNotifications.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |spec|
spec.name = "AmplifyUtilsNotifications"
spec.version = "1.1.1"
spec.summary = "AWS Amplify Swift Utilities for Notifications."
spec.description = "<<-DESC
Amplify Swift Utilities for Notifications provides helpful functionality for working with push notifications on iOS and macOS.
Although it was developed for use with AWS Amplify, it can also be used independently.
The following features are provided:
* Service extension to support fetching and attaching remote media to notifications
* Convenience methods to support requesting notification permissions and registering with APNs
DESC"
spec.homepage = "https://github.com/aws-amplify/amplify-swift-utils-notifications"
spec.license = "Apache License, Version 2.0"
spec.author = { "Amazon Web Services" => "amazonwebservices" }
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.15"
spec.swift_version = "5.6"
spec.source = { :git => "https://github.com/aws-amplify/amplify-swift-utils-notifications.git", :tag => spec.version }
spec.source_files = "Sources/AmplifyUtilsNotifications/**/*.swift"
end