Skip to content

Commit

Permalink
Final commit for 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JumioMobileTeam committed Mar 20, 2024
1 parent f6fab98 commit d85568c
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ If you have questions, please reach out to your Account Manager or contact [Jumi
- [FAQ](#faq)
- [Android Issues](#android-issues)
- [iOS Issues](#ios-issues)
- [Framework not found iProov.xcframework](#framework-not-found-iproovxcframework)
- [Framework not found DatadogCore.xcframework](#framework-not-found-datadogcorexcframework)
- [Framework not found](#framework-not-found)
- [Support](#support)

## Compatibility
Expand Down Expand Up @@ -291,27 +290,14 @@ Alternatively, it is also possible to set the key `manageAppVersionAndBuildNumbe
After installing Cocoapods, please localize your iOS application using the languages provided at the following path:
`ios -> Pods -> Jumio -> Localizations -> xx.lproj`

### Framework not found iProov.xcframework
If iOS application build is failing with `ld: framework not found iProov.xcframework` or `dyld: Symbol not found: ... Referenced from: /.../Frameworks/iProov.frameworks/iProov`, please make sure the necessary post install-hook has been included in your `Podfile`:
```
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['iProov', 'Starscream', 'DatadogSDK', 'SwiftProtobuf'].include? target.name
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
end
```

### Framework not found DatadogCore.xcframework
### Framework not found
If iOS application build is failing with `ld: framework not found DatadogCore.xcframework` or `dyld: Symbol not found: ... Referenced from: /.../Frameworks/DatadogCore.frameworks/DatadogCore`, please make sure the necessary post install-hook has been included in your `Podfile`:
```
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['DatadogRUM', 'DatadogCore', 'DatadogInternal'].include? target.name
if ['iProov', 'DatadogRUM', 'DatadogCore', 'DatadogInternal'].include? target.name
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
Expand Down

0 comments on commit d85568c

Please sign in to comment.