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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Fixed
- Fixed a crash showing out-of-the-box embedded messages on CocoaPods. `IterableEmbeddedView.xib` moved out of `Resources/` in 6.5.9, but the podspec only bundled `Resources/`, so the nib was missing from the CocoaPods resource bundle and `loadViewFromNib()` crashed. The podspec now bundles the UI component XIBs too. SPM was not affected.

## [6.7.2]
### Added
Expand Down
7 changes: 6 additions & 1 deletion Iterable-iOS-SDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ Pod::Spec.new do |s|

s.swift_version = '5.3'

s.resource_bundles = {'IterableSDKResources' => 'swift-sdk/Resources/**/*.{storyboard,xib,xcassets,xcdatamodeld}' }
s.resource_bundles = {
'IterableSDKResources' => [
'swift-sdk/Resources/**/*.{storyboard,xib,xcassets,xcdatamodeld}',
'swift-sdk/ui-components/**/*.{storyboard,xib,xcassets,xcdatamodeld}'
]
}

s.header_dir = 'IterableSDK'
end
Loading