I’m encountering a strange problem that I can’t figure out.
I keep getting this error: Uncaught Error: Can’t resolve all parameters for NavigationPageService: (?).
I have made a small repo to reproduce the issue here: https://github.com/Katur7/resolveErrorIonic
The app has one page that uses a provider called NavigationPageService. NavigationPageService uses SettingsService.
It looks like the NavigationPageService can’t find the SettingsService and I get the error.
The app works if NavigationPageService does not use SettingsService.
I have also tried removing SettingsService from NavigationPageService and using it in the page and that worked.
Is there something that I’m missing? Can a provider not use another provider?