Much more information can be found at Developer site
Mintegral distributes several iOS specific SDKs via CocoaPods. You can install the CocoaPods tool on OS X by running the following command from the terminal. Detailed information is available in the Getting Started guide.
$ sudo gem install cocoapods
CocoaPods is used to install and manage dependencies in existing Xcode projects.
-
Create an Xcode project, and save it to your local machine.
-
Create a file named
Podfile
in your project directory. This file defines your project's dependencies, and is commonly referred to as a Podspec. -
Open
Podfile
, and add your dependencies. A simple Podspec is shown here:platform :ios, '8.0' # for rewardVideo ad pod 'MintegralAdSDKAdapterForAdmob/RewardVideoAdAdapter' # for InterstitialVideo ad pod 'MintegralAdSDKAdapterForAdmob/InterstitialVideoAdAdapter' # for Interstitial ad pod 'MintegralAdSDKAdapterForAdmob/InterstitialAdAdapter' # for Banner ad pod 'MintegralAdSDKAdapterForAdmob/BannerAdAdapter' # for native ad pod 'MintegralAdSDKAdapterForAdmob/NativeAdAdapter'
-
Save the file.
-
Open a terminal and
cd
to the directory containing the Podfile.$ cd <path-to-project>/project/
-
Run the
pod install
command. This will install the SDKs specified in the Podspec, along with any dependencies they may have.$ pod install
-
Open your app's
.xcworkspace
file to launch Xcode. Use this file for all development on your app.