-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(DataStore): Combine support for all APIs (#524)
* Added README
- Loading branch information
Showing
14 changed files
with
1,608 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# Be sure to run `pod spec lint AWSS3StoragePlugin.podspec' to ensure this is a | ||
# valid spec and to remove all comments including this before submitting the spec. | ||
# | ||
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html | ||
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
AMPLIFY_VERSION = '1.0.1' | ||
|
||
s.name = 'AmplifyCombineSupport' | ||
s.version = AMPLIFY_VERSION | ||
s.summary = 'Amazon Web Services Amplify for iOS.' | ||
|
||
s.description = 'AWS Amplify for iOS provides a declarative library for application development using cloud services' | ||
|
||
s.homepage = 'https://aws.amazon.com/amplify/' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'Amazon Web Services' => 'amazonwebservices' } | ||
s.source = { :git => 'https://github.com/aws-amplify/amplify-ios.git', :tag => "v#{s.version}" } | ||
|
||
s.platform = :ios, '13.0' | ||
s.swift_version = '5.0' | ||
|
||
s.dependency 'Amplify', AMPLIFY_VERSION | ||
|
||
s.source_files = 'AmplifyCombineSupport/**/*.swift' | ||
|
||
end |
Oops, something went wrong.