Bad bug when using Google Analytics 2.0 B4

An example project using Google Analytics [Xcode Project] [1]

In fact, I created phoneplugin for Google Analytics. My code works fine, but when I try to add my code to an existing project, I get a bad error. I really can't find why the code might work on a new project, but it doesn't work on an old project.

The code works very well in a new project. I can see the data in the analytics toolbar, and everything in it works well.

+7
source share
1 answer

following the documentation:

First, you'll need a Google Analytics tracking ID to track application usage using the SDK.

The latter continues to add header files (GAI.h, GAITracker.h, GAITransaction.h and GAITransactionItem.h) and libGoogleAnalytics.a to your Xcode. Your application should link the following structures: 1- CoreData.framework 2- SystemConfiguration.framework

Note. To use the library version with intact debugging symbols, link to libGoogleAnalytics_debug.a instead of libGoogleAnalytics.a. This can be useful if you experience exceptions or failures that occur in the SDK.

BR

+1
source

All Articles