Preparing your iOS Project Dependencies

The first step towards integration is to prepare your project in Xcode using CocoaPods.

We need to make appropriate additions to dependencies at both levels as described below.

CocoaPods Set-Up

You can set up your project in Xcode using CocoaPods.

  1. Install CocoaPods. See the CocoaPods Guide here.

  2. Update CocoaPods to the latest version (v1.9.0+).

  3. Create a Podfile and use it in Xcode. See Instructions.

  4. Add the following to your Podfile and run pod update:

$   sudo gem update cocoapods
use_frameworks!

 pod 'KruzrDriveDetectionFramework', :git => 'https://gitlab.com/akashi3t/ios-kruzr-drive-framework.git',:branch=>'master'
 pod 'KruzrTripFramework', :git => 'https://gitlab.com/akashi3t/ios-kruzr-trip-framework.git',:branch=> ‘master’

Once you have made changes to these dependencies and set-up Xcode, you are ready to set-up configuration of your app. Please continue to the next section!

Last updated

Was this helpful?