Skip to content

Commit

Permalink
feat(share_plus): Add Swift Package Manager support (#3169)
Browse files Browse the repository at this point in the history
Co-authored-by: Volodymyr Buberenko <[email protected]>
Co-authored-by: Volodymyr <[email protected]>
  • Loading branch information
3 people authored Oct 16, 2024
1 parent 6a347cb commit b397022
Show file tree
Hide file tree
Showing 10 changed files with 533 additions and 8 deletions.
2 changes: 2 additions & 0 deletions packages/share_plus/share_plus/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ flutter_export_environment.sh

examples/all_plugins/pubspec.yaml

.build/
Podfile
Podfile.lock
Pods/
.swiftpm/
.symlinks/
**/Flutter/App.framework/
**/Flutter/ephemeral/
Expand Down
7 changes: 3 additions & 4 deletions packages/share_plus/share_plus/ios/share_plus.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ Downloaded by pub (not CocoaPods).
s.author = { 'Flutter Community Team' => '[email protected]' }
s.source = { :http => 'https://github.com/fluttercommunity/plus_plugins/tree/main/packages/share_plus/share_plus' }
s.documentation_url = 'https://pub.dev/packages/share_plus'
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.source_files = 'share_plus/Sources/share_plus/**/*.{h,m}'
s.public_header_files = 'share_plus/Sources/share_plus/include/**/*.h'
s.dependency 'Flutter'
s.ios.weak_framework = 'LinkPresentation'

s.platform = :ios, '12.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.resource_bundles = {'share_plus_privacy' => ['PrivacyInfo.xcprivacy']}
s.resource_bundles = {'share_plus_privacy' => ['share_plus/Sources/share_plus/PrivacyInfo.xcprivacy']}
end

27 changes: 27 additions & 0 deletions packages/share_plus/share_plus/ios/share_plus/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "share_plus",
platforms: [
.iOS("12.0"),
],
products: [
.library(name: "share-plus", targets: ["share_plus"])
],
dependencies: [],
targets: [
.target(
name: "share_plus",
dependencies: [],
resources: [
.process("PrivacyInfo.xcprivacy"),
],
cSettings: [
.headerSearchPath("include/share_plus")
]
)
]
)
Loading

0 comments on commit b397022

Please sign in to comment.