I followed this doc screen orientation doc
for adding and installing Screen Orientation plugin.
Then i put an import statement import {ScreenOrientation} from “@ionic-native/screen-orientation”;
in app.module.ts and added ScreenOrientation in providers section in @Ngmodule.
But unfortunately i got an error like
Uncaught Error: Invalid provider for the NgModule ‘AppModule’ - only instances of Provider and Type are allowed, got: [StatusBar, SplashScreen, LableConstants, HooRestApi, Keyboard, HeFloatingButtonComponent, [object Object], ?[object Object]?]
where my Provider contains
providers: [
StatusBar,
SplashScreen,
LableConstants,
HooRestApi,
Keyboard,
HeFloatingButtonComponent,
{provide: ErrorHandler, useClass: IonicErrorHandler},
ScreenOrientation
]
I searched every solution in internet but none it works.
Can anyone help me to resolve this issue in advance.