Skip to content

Commit

Permalink
Merge pull request #15 from numandev1/fix/build-issue-71
Browse files Browse the repository at this point in the history
fix: iOS build issues with RN 0.71
  • Loading branch information
numandev1 authored Jun 8, 2023
2 parents e83e9b1 + 4b93864 commit 66ba72d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@ if cocoapods are used in the project then pod has to be installed as well:
(cd ios; pod install)
```

> **Note: If you get Undefined symbols \_BIO_f_base64 error during Xcode build then follow the below steps**
>
> after pod install
>
> - Under "Link Binary With Libraries", click on the plus button.
>
> - Find the `OpenSSL.xcframework` from the list and hit Add.
>
> - run xcode build again
- Manual Link (iOS)

1. In XCode, in the project navigator, right click `Libraries``Add Files to [your project's name]`
Expand Down
6 changes: 3 additions & 3 deletions react-native-keys.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Pod::Spec.new do |s|
s.license = package["license"]
s.authors = package["author"]

s.platforms = { :ios => "11.0" }
s.platforms = { :ios => "12.4" }
s.source = { :git => "https://github.com/numandev1/react-native-keys.git", :tag => "#{s.version}" }

s.source_files = "ios/**/*.{h,m,mm}", "cpp/**/*.{h,cpp}"
s.source_files = "ios/**/*.{h,m,mm}", "cpp/**/*.{h,c,cpp}"

s.dependency "React-Core"
s.dependency "OpenSSL-Universal"
s.dependency "React-Core"
end

0 comments on commit 66ba72d

Please sign in to comment.