• Stars
    star
    363
  • Rank 114,297 (Top 3 %)
  • Language
    Ruby
  • License
    MIT License
  • Created over 4 years ago
  • Updated 12 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Cocoapods plugin to merge pods used by your Xcode project, reducing the number of dynamic frameworks your app has to load on startup

Cocoapods Pod Merge Plugin Gem Version

pod-merge is a Cocoapods plugin to merge dependencies (or pods) used by your Xcode project, to reduce the number of dynamic frameworks your app has to load on app startup.

The plugin introduces a new file to your project: the MergeFile, and hooks into the pre-install phase of pod install to merge your dependencies.

Benchmarks

Based on measurements taken on this repo's example project, merging 8 pods into 3.

pod-merge Benchmarks

According to our experience in Grab, improvements on older devices like the iPhone 5, 6 are more drastic. As a general rule, we've seen dylib loading times decrease by upto 50 ms per dynamic framework reduced on our user's slowest devices. More info here.

Installation

Using Bundler

If your Xcode project does not have a Gemfile yet, it's highly recommended you use bundler to maintain consistent versions of tools like cocoapods within your team. Learn how to set it up here.

To use cocoapods-pod-merge, add this line to your app's Gemfile:

gem 'cocoapods-pod-merge'

And then install it using bundler by executing:

$ bundle install

Note than this is a cocoapods plugin, hence it requires cocoapods as a dependency.

Usage

Using this plugin to merge your pods is a simple three step process:

1. Create a MergeFile

This plugin requires a file called MergeFile. This is how it looks:

group 'Networking'
	pod 'AFNetworking'
	pod 'SDWebImage'
end

The above MergeFile:

  • Defines a group named Networking. This will be the name of the resulting merged pod.
  • Tells the plugin to merge AFNetworking & SDWebImage into Networking

Here's a few important tips to decide what pods to merge.

Important: The MergeFile is pretty strict about it's syntax, so please avoid adding comments or random text to it. To make your life easier, tell your text editor to treat it like a Ruby file.

2. Update your Podfile

Now, update your Podfile to use the plugin, as well as the merged pods:

Add the line plugin 'cocoapods-pod-merge' to the top of your existing Podfile, and modify it to use the merged pod.

plugin 'cocoapods-pod-merge'

target 'MyApp'
	# pod 'AFNetworking' # Not needed anymore, since we'll use the merged Pod
	# pod 'SDWebImage' # Not needed anymore, since we'll use the merged Pod
	pod 'Networking', :path => 'MergedPods/Networking' # The merged pod
end

Things to note:

  • We commented out the pods 'AFNetworking' & 'SDWebImage' above, since these will now be installed as part of the merged Networking framework.
  • We add the merged framework Networking, which is named as the group name defined in our MergeFile
  • The path is fixed, since the plugin will put your merged pods in the MergedPods/<group name> directory.

3. Run Pod Install & Update your Code!

That's it! Just run:

$ bundle exec pod install

If all goes well, the pods should be merged according to your MergeFile, and should be available to use in your project.

There's one more thing! There's no framework such as AFNetworking or SDWebImage available to your project now, since these are now merged into a pod namedNetworking So, as a one time process, replace imports of the merged libraries in your project like

import AFNetworking

to

import Networking.AFNetworking

And that's it! You're done!

Example Project

There's a example project in the repo which shows the plugin in action. To try it out, just open the Terminal in the PodMergeExample directory, and run:

$ bundle install
$ bundle exec pod install

Benchmarks & More Info

To learn more about the performance improvements you can expect, checkout benchmarks.

Curious about how the plugin actually works? Check out inner workings.

MergeFile

The MergeFile has a very similar syntax to your Podfile. It also supports defining multiple groups, which creates multiple merged pods.

Consider a more common Podfile, with lots of pods, fixed versions, and different sources:

target 'MyApp'
	pod 'AFNetworking', '2.7.0'
	pod 'SDWebImage', '~> 5.0'
	pod 'IQKeyboardManager', '6.2.1'
	pod 'TTTAttributedLabel', '2.0.0'
	pod 'MBProgressHUD', :git => 'https://github.com/jdg/MBProgressHUD.git', :tag => '1.1.0'
	pod 'FLAnimatedImage', '1.0.12'
end

Let's group these Pods into two: UI, and Networking. The MergeFile to achieve this would look like this:

group 'Networking'
	pod 'AFNetworking', '2.7.0'
	pod 'SDWebImage', '~> 5.0'
end

group 'UI'
	pod 'IQKeyboardManager', '6.2.1'
	pod 'TTTAttributedLabel', '2.0.0'
	pod 'MBProgressHUD', :git => 'https://github.com/jdg/MBProgressHUD.git', :tag => '1.1.0'
	pod 'FLAnimatedImage', '1.0.12'
end

Two things to note here:

  • The MergeFile supports defining Pods just like your Podfile, with all the options that the Podfile supports, like the :path, :git, :branch arguments.
  • You can have any number of groups in your MergeFile. The resulting merged dependencies will be named by the groups defined in your MergeFile.

You can now modify your original Podfile to use the plugin, and the merged pods instead of the individual pods:

plugin 'cocoapods-pod-merge'

target 'MyApp'
	pod 'Networking', :path => 'MergedPods/Networking'
	pod 'UI', :path => 'MergedPods/UI'
end

That's it! Now just run bundle exec pod install!

Note: Once the pods are merged according to your MergeFile, you should commit the MergeFile into your version control system (like git)

Special Flags

has_dependencies!

If you have a group of Pods that depend on each other and you want merge them, add this flag into that group.

group 'SomePods'
	has_dependencies!
	pod 'ABC'
	pod 'ABCDependsOnThis'
end

This enables an experimental feature where the plugin tries to fix dependency imports. For example, If pod ABC has code like import <ABCDependsOnThis/File.h>, the plugin will automatically convert this import into #import "File.h", since after the merge, the both the pods will be in the same framework.

swift_version!

If you have a group of Swift pods, the plugin automatically finds out the common compatible Swift version across those pods, and sets that as the Swift version for the merged Pod. If you'd like to manually set the Swift version of a group, you can use the swift_version flag like:

group 'SwiftPodsGroup'
	swift_version! '5.0'
	pod 'SwiftPodA'
	pod 'SwiftPodB'
	pod 'SwiftPodC'
end

This is especially handy if some of the pods in your group do not have a Swift Version defined in their podspec.

platform

If you have multiple platforms in your base Podfile, you can specify the platform for each group in your MergeFile

group 'SwiftPodsGroup'
	platform :ios, '11.0'

	pod 'SwiftPodA'
	pod 'SwiftPodB'
	pod 'SwiftPodC'
end

This is helpful when you have a Podfile with Pods for iOS, WatchOS, etc...

Version Control (like git)

You should definitely commit the MergeFile into your repository, since this is just like your Podfile, and is required for the plugin to work.

The plugin creates a directory called MergedPods, where it keeps the source code and podspecs for the merged pods. Whether you decide you commit this directory depends entirely on your team's workflow. A good rule of thumb is if you commit the Pods/ directory created by Cocoapods, then you should commit this directory as well. The obvious upside is that the merged pods are cached, and the merge does not take place everytime pod install is run, unless something changes.

The plugin also creates another directory called MergeCache when it's running. While this directory is removed when the plugin is done, it can be good practice to add to your .gitignore file just in case the plugin fails to remove it.

MergeCache/

If you decide not to commit the MergedPods directory, add that to the .gitignore as well:

MergeCache/
MergedPods/

Tips

This plugin is not a magic bullet that'll merge all your cocoapods into a single framework. Here's a few tips to save you from hard to debug issues after merging your pods.

  • Start small, by merging a small number (2 to 4) of your Pods, and check everything works after the merge.
  • Only pods which expose their full source code can be merged. Pods that do not expose sources, eg: Fabric / Firebase cannot be merged.
  • Don't mix up Swift and Objective-C Pods in the same group.
  • Try to make logical sense of your groups, don't just merge every single Pod your app uses into one giant pod. This can be very fragile, and can lead to hard to debug compilation / linking issues.
  • Refrain from merging complex or specialized pods (like pods written in C/C++). Such pods can have special build settings and compiler flags that can break the other pods that are merged with them.
  • Make sure you add the required flags to relevant groups in your MergeFile.

Troubleshooting

If the above guidelines still do not solve your problem, please report it! Merging Pods is a complex process, and the plugin does not cover all possible use cases or podspec formats. Any feedback or feature suggesions are also encouraged. Bug reports and pull requests are welcome.

License

The cocoapods-pod-merge plugin is available as open source under the terms of the MIT License.

More Repositories

1

front-end-guide

📚 Study guide and introduction to the modern front end stack.
JavaScript
14,933
star
2

cocoapods-binary-cache

Ruby
451
star
3

Grazel

A tool to migrate Android projects from Gradle to Bazel incrementally and automatically
Kotlin
246
star
4

engineering-blog

📝 We write about our technologies and the problems we handle at scale.
Ruby
119
star
5

swift-leak-check

Swift
109
star
6

talaria

TalariaDB is a distributed, highly available, and low latency time-series database for Presto
Go
108
star
7

secret-scanner

Go
40
star
8

grab-bazel-common

Common rules and macros for Grab's Android projects built with Bazel.
Kotlin
35
star
9

hackathon

💻 Official Grabathon websites
JavaScript
29
star
10

symphony

Go
28
star
11

grabplatform-sdk-js

GrabPlatform SDK in javascript
TypeScript
27
star
12

async

Go
24
star
13

grabplatform-sdk-android

GrabPlatform SDK for android
Kotlin
20
star
14

superapp-sdk

SDK for Grab SuperApp WebView.
JavaScript
15
star
15

grabplatform-sdk-ios

GrabPlatform SDK for iOS
Swift
12
star
16

grab-query-traces

10
star
17

grabpay-merchant-sdk

Java
9
star
18

gosm

Gosm is a golang library which implements writing OSM pbf files.
Go
9
star
19

mobile-kit-bridge-sdk

SDK for web view bridges that offers unified method signatures for Android/iOS
TypeScript
7
star
20

GraphBEAN

Interaction-Focused Anomaly Detection on Bipartite Node-and-Edge-Attributed Graphs
Python
6
star
21

grabplatform-sample

Comprehensive sample for GrabPlatform-related SDKs.
JavaScript
4
star
22

blogs

Accompanying source code for our engineering blog
Ruby
4
star
23

grabplatform-sdk-golang

GrabPlatform SDK for Golang
3
star
24

grabplatform-sdk-js-example

JavaScript
1
star
25

go-showdeps

Go
1
star