-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Connect] Prepare to publish StripeConnect module (#4035)
## Summary Prepare for StripeConnect SDK release: - Adds `StripeConnect` to package managers and modules.yaml - Configures installation tests - Adds to modules list in main README - Adds changelog entry ## Motivation https://jira.corp.stripe.com/browse/MXMOBILE-2496 ## Testing - [x] Installation tests pass on CI - [x] Verify size report running on Emerge Tools: https://www.emergetools.com/build/14436e05-f195-4a1c-9b30-fc1950750883 ## Changelog > [Added] `StripeConnect` SDK to add connected account dashboard functionality to your app using [Connect embedded components](https://docs.stripe.com/connect/get-started-connect-embedded-components?platform=ios). --------- Co-authored-by: nschris-stripe <[email protected]>
- Loading branch information
1 parent
59e53e7
commit 1d5020c
Showing
16 changed files
with
110 additions
and
62 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
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,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'StripeConnect' | ||
|
||
# Do not update s.version directly. | ||
# Instead, update the VERSION file and run ./ci_scripts/update_version.sh | ||
s.version = '24.1.3' | ||
|
||
s.summary = 'Use Connect embedded components to add connected account dashboard functionality to your app.' | ||
s.license = { type: 'MIT', file: 'LICENSE' } | ||
s.homepage = 'https://docs.stripe.com/connect/get-started-connect-embedded-components' | ||
s.authors = { 'Stripe' => '[email protected]' } | ||
s.source = { git: 'https://github.com/stripe/stripe-ios.git', tag: "#{s.version}" } | ||
s.frameworks = 'Foundation', 'WebKit', 'UIKit' | ||
s.requires_arc = true | ||
s.platform = :ios | ||
s.swift_version = '5.0' | ||
# Connect only supports 15+, but setting this to 13.0 to make installation tests easier. | ||
s.ios.deployment_target = '13.0' | ||
s.source_files = 'StripeConnect/StripeConnect/**/*.swift' | ||
s.dependency 'StripeCore', s.version.to_s | ||
s.dependency 'StripeUICore', s.version.to_s | ||
s.dependency 'StripeFinancialConnections', s.version.to_s | ||
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
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
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
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
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
Oops, something went wrong.