ios - gratis - google metrics analytics
Google Analytics SDK 3.0_sqlite3 errores de vinculador en iOS (1)
Puede resolver este problema importando " libsqlite3.0 "
Estoy integrando Google Analytics SDK 3.0 en mi proyecto. Pero estoy obteniendo errores de enlazador cuando intento construir mi proyecto.
Como mencioné en la documentation , he vinculado las siguientes bibliotecas en mi proyecto,
- libGoogleAnalyticsServices.a
- AdSupport.framework
- CoreData.framework
- SystemConfiguration.framework
- libz.dylib
Incluso entonces, me siguen los errores al construir el proyecto,
d: warning: directory not found for option ''-L"/Users/....NameProject/Libraries/Google Analytics"''
"_sqlite3_bind_blob", referenced from:
-[TAGDataLayerPersistentStoreImpl writeEntriesToDatabase:expireTime:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o)
"_sqlite3_bind_int", referenced from:
-[TAGDataLayerPersistentStoreImpl deleteEntries:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o)
"_sqlite3_bind_int64", referenced from:
-[TAGDataLayerPersistentStoreImpl writeEntriesToDatabase:expireTime:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o)
-[TAGDataLayerPersistentStoreImpl peekEntryIds:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o)
....
¿Qué está causando estos errores? ¿Me estoy perdiendo algo?
Aprecio tu ayuda.
SOLUCIÓN:
Lo resolví vinculando mi proyecto con la biblioteca libsqlite3.0
. La documentación de Google Analytics no mencionó mencionar para vincular esta biblioteca. Espero que esto ayude.