-
Notifications
You must be signed in to change notification settings - Fork 332
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
SEGAnalyticsIntegrationDidStart unaccessible when integrating using SPM #1030
Comments
Also interested in this. Using the string literal for now:
|
+1 |
1 similar comment
+1 |
I updated my segment analytics to the swift version from Obj-c using SPM. |
|
@piotrtobolski
|
SEGAnalyticsIntegrationDidStart
is inSEGIntegrationsManager.h
which is inInternal
directory. Because of that, the SPM-integrated framework is not exposing it. Seems like an error considering #520 that explicitly made it public. I need to access this variable to know which integrations are started because I'm using some of them directly (but only if they are started).Suggested solution: move this declaration to some file from the
Classes
directory so it is available using SPM just like it is available when CocoaPods is used.The text was updated successfully, but these errors were encountered: