You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 17, 2020. It is now read-only.
After marking CoreLocationMiddleware as a public final class, the compiler is complaining about the following :
Method 'locationManager(_:didChangeAuthorization:)' must be declared public because it matches a requirement in public protocol 'CLLocationManagerDelegate'
I am of the opinion that those methods should not be made public, because they are supposed to be internal to our middleware.
So we probably need to extract the compliance to CLLocationManagerDelegate to an non-public class and use that class as the delegate.