Skip to content

Commit

Permalink
changes for 18.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/) committed Sep 24, 2020
1 parent 3f5d4cd commit 395fd56
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 17 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

**Note**: If the strings translations change it will result in a MINOR version change, therefore you are responsible for testing your translated layout in case you are using custom translations. [More on language localisation](README.md#language-customisation)

## [18.6.0] - 2020-09-21

### Changed

- Public: Post capture confirmation error bubble on modals now grows to button width
- Public: Removed 'Version' prefix on github release title to align with other Onfido SDKs

### Fixed

- UI: Fixed the crash problem when SDK integrates to the app running on Xcode 12 project
- UI: Fixed user able to go back during face video upload

## [18.5.0] - 2020-09-14

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -986,8 +986,8 @@ A few things to check before you go live:

| User iOS Version | SDK Size Impact (MB) |
|------------------|-----------------------------------|
| 12.2 and above | 3.928|
| Below 12.2 | up to 3.928* or up to 12.929**|
| 12.2 and above | 4.362|
| Below 12.2 | up to 4.362* or up to 16.062**|


**\*** If the application is in Swift but doesn't include any Swift libraries that Onfido iOS SDK requires
Expand Down
22 changes: 15 additions & 7 deletions SampleApp/Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
source 'https://cdn.cocoapods.org/'

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'SampleApp' do


pod 'Onfido', '18.5.0'


use_frameworks!

pod 'Onfido', '18.6.0'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
22 changes: 15 additions & 7 deletions SampleAppObjC/Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
source 'https://cdn.cocoapods.org/'

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'SampleAppObjC' do


pod 'Onfido', '18.5.0'


use_frameworks!

pod 'Onfido', '18.6.0'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
3 changes: 2 additions & 1 deletion onfido-carthage-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"18.3.2": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.3.2.zip",
"18.3.3": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.3.3.zip",
"18.4.0": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.4.0.zip",
"18.5.0": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.5.0.zip"
"18.5.0": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.5.0.zip",
"18.6.0": "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v18.6.0.zip"
}

0 comments on commit 395fd56

Please sign in to comment.