Mintegral adapter for Mopub
Much more information can be found at Developer site
Install a Mintegral Adapter & SDK using CocoaPods
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
Add Mintegral Adapter to your iOS app
CocoaPods is used to install and manage dependencies in existing Xcode projects.
-
Create an Xcode project, and save it to your local machine.
-
Open a terminal and
cdto the directory of your project. Then run thepod initcommand. Podfile would be created. -
Open
Podfile, and add your dependencies. A simple Podspec is shown here:platform :ios, '10.0' pod 'MintegralAdSDKAdapterForMopub' -
Save the file.
-
Open a terminal and
cdto the directory containing the Podfile.$ cd <path-to-project>/project/ -
Run the
pod installcommand. This will install the SDKs specified in the Podspec, along with any dependencies they may have.$ pod installNote: Mintegral SDKs would be automatically installed in the meantime of installing Mopub Adapters.So there is no need to add "Pod MintegralAdSDK" in Podfile.
-
Open your app's
.xcworkspacefile to launch Xcode. Use this file for all development on your app.