##What's Countly? Countly is an innovative, real-time, open source mobile analytics application. It collects data from mobile phones, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data (for iOS & Android).
Countly Server;
Other Countly SDK repositories;
##Installation
Countly iOS SDK includes necessary tools to track your application. In order to integrate SDK to your application, follow these steps.
- Download Countly iOS SDK.
- Add these files to your project under Xcode:
Countly.h
Countly.m
Countly_OpenUDID.h
Countly_OpenUDID.m
- In the project navigator, select your project
- Select your target
- Select the Build Phases tab
- Open Link Binaries With Libraries expander
- Click the + button
- Select CoreTelephony.framework, select Optional (instead of Required)
- (optional) Drag and drop the added framework to the Frameworks group
- In your application delegate, import
Countly.h
and insideapplication:didFinishLaunchingWithOptions:
add the line;[[Countly sharedInstance] start:@"YOUR_APP_KEY" withHost:@"http://YOUR_API_HOST.com"];
at the beginning of the function.
It should finally look like this:
#import "Countly.h" // newly added line - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[Countly sharedInstance] start:@"TYPE_HERE_YOUR_APP_KEY_GENERATED_IN_COUNTLY_ADMIN_DASHBOARD" withHost:@"http://TYPE_HERE_URL_WHERE_API_IS_HOSTED"]; // newly added line // your code }
Note: Before upgrading to a new SDK, do not forget to remove the existing, older SDK from your project.
##How can I help you with your efforts? Glad you asked. We need ideas, feedbacks and constructive comments. All your suggestions will be taken care with upmost importance.
We are on Twitter and Facebook if you would like to keep up with our fast progress!
##Home
##Community & support