File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ name = "encrypted_upload_test"
7474path = " examples/encrypted_upload_test.rs"
7575
7676[workspace .package ]
77- version = " 0.2.21 "
77+ version = " 0.2.22 "
7878edition = " 2021"
7979license = " MIT OR Apache-2.0"
8080repository = " https://github.com/functionland/fula-api"
Original file line number Diff line number Diff line change 66
77Pod ::Spec . new do |s |
88 s . name = 'fula_client'
9- s . version = '0.2.21 '
9+ s . version = '0.2.22 '
1010 s . summary = 'Flutter SDK for Fula decentralized storage'
1111 s . description = <<-DESC
1212 A Flutter plugin providing client-side encryption, metadata privacy,
@@ -22,11 +22,16 @@ Pod::Spec.new do |s|
2222 s . platform = :ios , '12.0'
2323
2424 # Flutter.framework does not contain a i386 slice
25- # -force_load ensures all FFI symbols are included even if they appear "unused"
26- # (they're called from Dart, not from Objective-C/Swift, so linker would strip them)
2725 s . pod_target_xcconfig = {
2826 'DEFINES_MODULE' => 'YES' ,
29- 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' ,
27+ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
28+ }
29+
30+ # -force_load must be in user_target_xcconfig (not pod_target_xcconfig) because
31+ # it needs to apply to the main app target that does the final linking.
32+ # This ensures all FFI symbols are included even if they appear "unused"
33+ # (they're called from Dart, not from Objective-C/Swift, so linker would strip them)
34+ s . user_target_xcconfig = {
3035 'OTHER_LDFLAGS' => '$(inherited) -force_load "${PODS_XCFRAMEWORKS_BUILD_DIR}/fula_client/libfula_flutter.a"'
3136 }
3237 s . swift_version = '5.0'
Original file line number Diff line number Diff line change 11name : fula_client
22description : Flutter SDK for Fula decentralized storage with client-side encryption, metadata privacy, and secure sharing.
3- version : 0.2.21
3+ version : 0.2.22
44homepage : https://fx.land
55repository : https://github.com/functionland/fula-api
66issue_tracker : https://github.com/functionland/fula-api/issues
You can’t perform that action at this time.
0 commit comments