Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.8.2
- Update iOS podspec to use xcconfig for shared objects

## 3.8.1
- Updates binaries + Updated Android SDK to r28 for 16KB support

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.8.0"
version: "3.8.2"
ffi:
dependency: transitive
description:
Expand Down
8 changes: 5 additions & 3 deletions ios/fast_rsa.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ library for use RSA.
s.platform = :ios, '12.0'
s.vendored_frameworks = 'Rsa.xcframework'
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.xcconfig = {
'OTHER_LDFLAGS[sdk=iphoneos*]' => "-force_load '#{framework_path}/ios-arm64/librsa_bridge.a'",
'OTHER_LDFLAGS[sdk=iphonesimulator*]' => "-force_load '#{framework_path}/ios-arm64_x86_64-simulator/librsa_bridge.a'",
'OTHER_LDFLAGS[sdk=maccatalyst*]' => "-force_load '#{framework_path}/ios-arm64_x86_64-maccatalyst/librsa_bridge.a'"
}
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
'OTHER_LDFLAGS[sdk=iphoneos*]' => "-force_load #{framework_path}/ios-arm64/librsa_bridge.a",
'OTHER_LDFLAGS[sdk=iphonesimulator*]' => "-force_load #{framework_path}/ios-arm64_x86_64-simulator/librsa_bridge.a",
'OTHER_LDFLAGS[sdk=maccatalyst*]' => "-force_load #{framework_path}/ios-arm64_x86_64-maccatalyst/librsa_bridge.a"
}
s.swift_version = '5.0'

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fast_rsa
description: library for use RSA with support for android and ios, macOS, linux, windows and web
version: 3.8.1
version: 3.8.2
homepage: https://github.com/jerson/flutter-rsa

environment:
Expand Down
Loading