Posts

Showing posts from November, 2019

Develop Fast iOS App Using this Plugin!

The integration of a high number of cocoapods in your iOS application leads to a relatively slow application. I was searching over the internet when suddenly I found this plugin. It 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. Pod-merge introduces a new file to your project; the MergeFile, and hooks into the pre-install phase of pod install to merge your dependencies. Installation Steps It is highly recommended to use bundler for using this plugin. So, open your terminal and type the following $ sudo gem install bundler Now, open your Xcode project in the terminal and type the following $ bundler init This command will create a file named Gemfile, open this file and add the following gem 'cocoapods', ‘1.8.4’ # change cocoapods version to the version you are usinggem 'cocoapods-pod-merge', :path => '../' Now, run the following command $ b