Skip to content

Commit

Permalink
fix issue with shiftpackages (#760)
Browse files Browse the repository at this point in the history
* fix: solved issue with swift packages

* chore: revert example gitignore file

* chore: revert changes in example project

* chore: revert changes in example project
lazytesting authored Jan 17, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 8009f4d commit 2688c04
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/flutter_native_splash.podspec
Original file line number Diff line number Diff line change
@@ -13,8 +13,8 @@ Customize Flutter's default white native splash screen with background color and
s.license = { :file => '../LICENSE' }
s.author = { 'Jon Hanson' => '[email protected]' }
s.source = { :path => '.' }
s.source_files = 'flutter_native_splash/Sources/flutter_native_splash/**/*'
s.public_header_files = 'flutter_native_splash/Sources/flutter_native_splash/**/*.h'
s.source_files = 'flutter_native_splash/Sources/flutter_native_splash//*.{h,m}'
s.public_header_files = 'flutter_native_splash/Sources/flutter_native_splash/include//*.h'
s.dependency 'Flutter'
s.platform = :ios, '9.0'
s.resource_bundles = {'flutter_native_splash_privacy' => ['flutter_native_splash/Sources/flutter_native_splash/PrivacyInfo.xcprivacy']}
3 changes: 3 additions & 0 deletions ios/flutter_native_splash/Package.swift
Original file line number Diff line number Diff line change
@@ -18,6 +18,9 @@ let package = Package(
dependencies: [],
resources: [
.process("PrivacyInfo.xcprivacy"),
],
cSettings: [
.headerSearchPath("include/flutter_native_splash")
]
)
]

0 comments on commit 2688c04

Please sign in to comment.