TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Apache 2 |
ReleasedLast Release | Oct 2015 |
Maintained by Adrien Blaise.
Depends on: | |
FMDB | ~> 2.5 |
AFNetworking | ~> 2.0 |
This library allows you to record your application's usage through the Appaloosa Store's interface.
- iOS 7+
- An Enterprise account on Appaloosa Store
- A native store must have been created for your account
- At least one login on the native store
This library depends on the Appaloosa iOS SDK. This is why you will need to :
- Configure the Appaloosa Agent
- Check authorizations for the application
This library can be integrated as a Pod
pod 'ASAnalytics'
This library allows you to gather intel on the way people use your app. Various user events will be recorded and sent asynchronously to our servers. The graphs will be displayed in the admin view. Note that statistics may appear with delay.
Add the following line at the start of your application. In your AppDelegate.m for instance, right after the calls to the Appaloosa iOS SDK. This method has to be called before any other one in the Analytics SDK.
[ASAppaloosaAnalytics initializeAnalytics:[@"YOUR_APPALOOSA_STORE_ID" intValue] storeToken:@"YOUR_APPALOOSA_STORE_TOKEN"];
To retrieve your Appaloosa store id and token, go to the Appaloosa web admin, then click on your store's name in the menu on the top right corner. Then, click on "settings" in the dropdown menu. At the bottom of the page, you'll find your store id and token.
A prerequisite for the recording of analytics is to check if the user is blacklisted (see Prerequisites paragraph above). The recording of events starts as soon as the checkBlacklist is done.
The MIT License (MIT)
Copyright (c) 2015 Appaloosa Technology
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.