forked from aws/amazon-chime-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pod specs for AmazonChimeSDKMachineLearning (aws#467)
Summary: Add `AmazonChimeSDKMachineLearning*.podspec` files for bitcode and non-bitcode versions. Dependencies are subsequently added to `AmazonChimeSDK`. Although developers don't necessarily need the library, this makes sure that if they want to use the features, the transitive dependency is also imported. Test Plan: Verify that `AmazonChimeSDKDemoPods` works through localhost and a private podspec repository. Co-authored-by: Richard Huang <[email protected]> Co-authored-by: Richard Huang <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
0 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,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AmazonChimeSDKMachineLearning-Bitcode' | ||
s.version = '0.1.0' | ||
s.summary = 'Amazon Chime SDK Machine Learning features in iOS for Background Blur and Replacement with Bitcode support.' | ||
s.description = 'An iOS client library for integrating multi-party communications powered by the Amazon Chime service.' | ||
s.homepage = 'https://github.com/aws/amazon-chime-sdk-ios' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'Amazon Web Services' => 'amazonwebservices' } | ||
s.source = { :http => "https://amazon-chime-sdk-ios.s3.amazonaws.com/machine-learning/0.1.0/AmazonChimeSDKMachineLearning-0.1.0.tar.gz" } | ||
s.ios.deployment_target = '10.0' | ||
s.vendored_frameworks = "AmazonChimeSDKMachineLearning.xcframework" | ||
s.swift_version = '5.0' | ||
end |
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,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AmazonChimeSDKMachineLearning-No-Bitcode' | ||
s.version = '0.1.0' | ||
s.summary = 'Amazon Chime SDK Machine Learning features in iOS for Background Blur and Replacement without Bitcode support.' | ||
s.description = 'An iOS client library for integrating multi-party communications powered by the Amazon Chime service.' | ||
s.homepage = 'https://github.com/aws/amazon-chime-sdk-ios' | ||
s.license = 'Apache License, Version 2.0' | ||
s.author = { 'Amazon Web Services' => 'amazonwebservices' } | ||
s.source = { :http => "https://amazon-chime-sdk-ios.s3.amazonaws.com/machine-learning-without-bitcode/0.1.0/AmazonChimeSDKMachineLearning-0.1.0.tar.gz" } | ||
s.ios.deployment_target = '10.0' | ||
s.vendored_frameworks = "AmazonChimeSDKMachineLearning.xcframework" | ||
s.swift_version = '5.0' | ||
end |