-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1955-add Google Analytics feature #2166
base: master
Are you sure you want to change the base?
Conversation
[iOS] widget에 GA 추적 넣기 #1995 - add Google Analytics feature
@@ -5,6 +5,7 @@ | |||
}; | |||
objectVersion = 46; | |||
objects = { | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pbxproj는 변경되어야 하나요? google analytics는 제가 따로 추가할 예정입니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네 아래 항목들이 들어가야 됩니다.
프로젝트 파일의 Target에 아래 framework와 library가 들어가야됩니다.
CoreData.framework
SystemConfiguration.framework
libz.dylib
libsqlite3.dylib
libGoogleAnalyticsServices.a
MessageUI.Framework
AdSupport.Framework
CoreTelephony.Framework
ios/widget/GA/GAI.h
Outdated
@@ -0,0 +1,192 @@ | |||
/*! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
구글 SDK는 직접 넣지 않아야 합니다. (plugin으로 추가됨)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GA 헤더와 라이브러리는 빼고 commit할게요
[iOS] widget에 GA 추적 넣기 #1995 - delete GA header from pbxproj
[iOS] widget에 GA 추적 넣기 #1995