diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f08fdf475..521f8d2d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Important +**Performance Improvements** + +- Cocoapods: FBSDKCoreKit rebuilds FacebookSDKStrings.bundle so xcode processes the strings files into binary plist format. This strips comments and saves ~181KB in disk space for apps. [#1713](https://github.com/facebook/facebook-ios-sdk/pull/1713) + [Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.2.0...HEAD) ## 9.2.0 diff --git a/FBSDKCoreKit.podspec b/FBSDKCoreKit.podspec index a96c1e9bfd..8b91018dd9 100644 --- a/FBSDKCoreKit.podspec +++ b/FBSDKCoreKit.podspec @@ -57,7 +57,7 @@ Pod::Spec.new do |s| 'FBSDKCoreKit/FBSDKCoreKit/GraphAPI/*.h' ss.private_header_files = 'FBSDKCoreKit/FBSDKCoreKit/Internal/**/*.h', 'FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/**/*.h' - ss.resources = 'FacebookSDKStrings.bundle' + ss.resource_bundles = { 'FacebookSDKStrings' => ['FacebookSDKStrings.bundle/**/*.strings'] } ss.library = 'c++', 'stdc++' end end