-
-
Notifications
You must be signed in to change notification settings - Fork 663
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dependencies for Privacy Manifest (#426)
* Bump Carthage * Bump Podspec * Bump Package * Update ReadMe * Fix missed deployment target bump. Xcode generated changes. * Switch from Carthage to SPM for dependencies * Updated to recommended settings. Removed Carthage search path.
- Loading branch information
Showing
10 changed files
with
115 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
NotificationBanner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
NotificationBanner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
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,24 @@ | ||
{ | ||
"originHash" : "2cd5226517eb8502063579cd80820b855cacd994f63ff7012771df4d679600f1", | ||
"pins" : [ | ||
{ | ||
"identity" : "marqueelabel", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/cbpowell/MarqueeLabel", | ||
"state" : { | ||
"revision" : "877e810534cda9afabb8143ae319b7c3341b121b", | ||
"version" : "4.5.0" | ||
} | ||
}, | ||
{ | ||
"identity" : "snapkit", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/SnapKit/SnapKit", | ||
"state" : { | ||
"revision" : "2842e6e84e82eb9a8dac0100ca90d9444b0307f4", | ||
"version" : "5.7.1" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'NotificationBannerSwift' | ||
s.version = '3.2.1' | ||
s.version = '4.0.0' | ||
s.summary = 'The easiest way to display in app notification banners in iOS.' | ||
|
||
s.description = <<-DESC | ||
|
@@ -13,11 +12,15 @@ NotificationBanner is an extremely customizable and lightweight library that mak | |
s.author = { 'Daltron' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/Daltron/NotificationBanner.git', :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '10.0' | ||
s.ios.deployment_target = '12.0' | ||
s.swift_version = '5.0' | ||
s.source_files = 'NotificationBanner/Classes/**/*' | ||
|
||
s.dependency 'SnapKit', '~> 5.6.0' | ||
s.dependency 'MarqueeLabel', '~> 4.3.0' | ||
s.dependency 'SnapKit', '~> 5.7.1' | ||
s.dependency 'MarqueeLabel', '~> 4.5.0' | ||
|
||
s.resource_bundle = { | ||
"NotificationBannerPrivacyInfo" => "NotificationBanner/Supporting Files/PrivacyInfo.xcprivacy" | ||
} | ||
|
||
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
Oops, something went wrong.