0

I'm following the instructions in Google Analytics for iOS, and once I've set the SDK files and frameworks, I get these errors when I try to build the project:

Undefined symbols for architecture armv7:
"_sqlite3_column_double", referenced from:
  -[GAIAnalyticsPropertiesStore propertyRecordForTrackingId:] in libGoogleAnalyticsServices.a(GAIAnalyticsPropertiesStore.o)
"_sqlite3_bind_double", referenced from:
  -[GAIAnalyticsPropertiesStore bindRecord:toUpsertStatement:] in libGoogleAnalyticsServices.a(GAIAnalyticsPropertiesStore.o)

and a lot more like this, has somebody else experienced this?

Thanks

AppsDev
  • 12,319
  • 23
  • 93
  • 186

1 Answers1

2

This tutorial seems to be out of date to me. Have you added all the libraries?

CoreData.framework
SystemConfiguration.framework
libz.dylib
libsqlite3.dylib
libGoogleAnalyticsServices.a

I recommend to go to the official documentation.

agy
  • 2,804
  • 2
  • 15
  • 22