We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AppDelegate:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let analytics = Analytics<EventTracking>() --> error: Cannot specialize a non-generic definition analytics.register(provider: FirebaseProvider()) return true }
The text was updated successfully, but these errors were encountered:
How did you define EventTracking?
EventTracking
Sorry, something went wrong.
I had exactly the same issue. There is an Analytics class in firebase analytics and by default, it tries to initialize it.
You need to use the namespace Umbrella.Analytics<EventTracking>()
Umbrella.Analytics<EventTracking>()
No branches or pull requests
AppDelegate:
The text was updated successfully, but these errors were encountered: