mtet88
mtet88

Reputation: 524

How do I check the google analytics sdk version for iOS?

I got some iOS projects that were developed by another company and I want to check what Google Analytics SDK versions are these projects using.

Note: When I run the projects, there's no google analytics logs showing the version

Thank you in advance!

Upvotes: 1

Views: 775

Answers (1)

Anbu.Karthik
Anbu.Karthik

Reputation: 82759

This is not the good answer, but you can identify the which version of Google Analytics added/used in your Xcode project. open your Google Analytics folder in navigator and open the GAI.h

inside the header file you get the version

 /*!
 @header    GAI.h
 @abstract  Google Analytics iOS SDK Header
 @version   3.0
 @copyright Copyright 2013 Google Inc. All rights reserved.
 */

Upvotes: 2

Related Questions