Recommend a relatively easy to use application statistics SDK, the most important free 😂😂😂😂 college

Ameng… Long time ago when I was stepping into the “three-party platform sharing function”, I chose this to start with, and I thought it was the easiest… 😂 😂 😂 😂 😂 😂 😂

Today I recommend a good (** free, though only for 15 days) app statistics service. Of course, the most popular ones are: user analysis, persistence analysis, engagement analysis, terminal properties and ⭐️ error analysis ⭐️

Application of statistical

A very simple umeng SDK integration:

1. First of all, you need to go to ** umeng official website **, register and add (create) the new application, and then obtain its Appkey.

2. Find the downloaded “ummobClick. framework” file and drag it into the project. Add system dependency library framework and compiler options for the project: TARGET ➡️ Build Phases ➡️ Link Binary With Libraries ➡️ Click + to add CoreTelephony. Framework, libz. TBD, libsqlite.tbd.

3. In “appdelegate. m” : #import “UMMobClick/ mobclick. h

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { }
Copy the code

Add the following code:

/** * umconfigInstance. appKey = @"your appKey "; UMConfigInstance.channelId = @"App Store"; //UMConfigInstance.eSType = E_UM_GAME; / / applies only to the game scene [MobClick startWithConfigure: UMConfigInstance]; // Call this method to initialize the SDK!Copy the code

Parameter Description:

UMConfigInstance is the instance class for the SDK parameter configuration, and you only need to assign the parameter marked required in its member. (OPTIONAL)

AppKey is the appKey applied by developers in umENG background (appKey can be viewed on the page of “Personal Center ➡️ ➡️, select the corresponding application ➡️, place the mouse in the application column, and click to integrate”);

channelIdIs the application channel identifier. The default is @”App Store”.

At this point, each subsequent execution of the application will be counted

Statistical Analysis for more integration details: iOS integration details document

Simple!! After that, you can go to the website to see the statistical details of your application

Click to select app:

To name a few of the showcases 🌰 :

General situation of

User analysis

Retained analysis

User engagement

Terminal attributes

View detailed information about the device used by the user:

User’s operator and network usage information:

User’s geographical information:

Even foreigners use… I don’t know what it is. 😂 😂 😂 😂 😂 😂 😂 😂

Error analysis

⭐️ abnormal statistics ⭐️ should be the most used places for friends! It is also the most valuable ~~ but a maximum of 1000, and the time is within 15 days… Of course, if you are RMB Coder, please enjoy ~~~ 😂 1. View “Error Statistics Line Chart”

2. Click 2017-01-07 to view the anomalies of the current day

3. Click the third exception to view the details of the exception

What are the dSYM file and UUID:bbs.umeng.com/thread-6992…

Certainly want to know details of the exception handling operation (can be exported file storage), click to enter: dev.umeng.com/analytics/r…

Other functions on their own to use it! Anyway, it is very concise and practical

(2017.01.13)

goyohol’s essay