Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raczo/cocoapod
CocoaPod repository for MobileAppTracking iOS library
https://github.com/raczo/cocoapod
Last synced: 1 day ago
JSON representation
CocoaPod repository for MobileAppTracking iOS library
- Host: GitHub
- URL: https://github.com/raczo/cocoapod
- Owner: RacZo
- License: other
- Created: 2015-02-06T19:55:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-15T02:51:08.000Z (about 10 years ago)
- Last Synced: 2024-04-21T19:00:20.425Z (9 months ago)
- Language: Objective-C
- Size: 10 MB
- Stars: 0
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Installing MobileAppTracking iOS SDK using CocoaPods
=======[CocoaPods: The Objective-C Library Manager](http://www.cocoapods.org) allows you to manage the library dependencies of your iOS Xcode project.
You can use CocoaPods to install MobileAppTracking iOS SDK and required system frameworks.## Steps to include MobileAppTracking (MAT) iOS SDK to your iOS Xcode project
### Install CocoaPods
If you have already installed CocoaPods then you can skip this step.
$ [sudo] gem install cocoapods
$ pod setup### Install MobileAppTracker pod
Once CocoaPods has been installed, you can include MAT iOS SDK to your project by adding a dependency entry to the Podfile in your project root directory.
$ edit Podfile
platform :ios
pod 'MobileAppTracker'This sample shows a minimal Podfile that you can use to include MAT iOS SDK dependency to your project. You can include any other dependency as required by your project.
Now you can install the dependencies in your project:
$ pod install
Once you install a pod dependency in your project, make sure to always open the Xcode workspace instead of the project file when building your project:$ open App.xcworkspace
Now you can import MobileAppTracker in your source files:#import
At this point MAT iOS SDK is ready for use in your project.### Next Steps
Refer [MAT SDK Integration Document](http://support.mobileapptracking.com/entries/23745301-iOS-SDK-v2-6-1) for help on tracking installs and events using the MAT iOS SDK.