728x90
ionic 의 unique-device-id 를 사용하고자 한 ts 파일에 import 하니 나온 에러..
staticInjectorError(AppModule)[UniqueDeviceID]
app.module.ts 의 providers 에 추가하여 해결하였다.
import { UniqueDeviceID } from '@ionic-native/unique-device-id/ngx';
@NgModule({
...
providers: [
...
UniqueDeviceID
],
bootstrap: [AppComponent]
})
export class AppModule {}
728x90
'Study Note > Angular' 카테고리의 다른 글
ionic 5 #이 시스템에서 스크립트를 실행할 수 없으므로... 에러해결 (0) | 2020.01.24 |
---|---|
Ionic 5 # [Android] Can not add task ': processDebugGoogleServices'as a task with that name already exists (0) | 2020.01.16 |
Angular 8 #does not exist on type 'GlobalEventHandlers' in angular (0) | 2019.12.19 |
ionic 5 #keypress is not working in Android (0) | 2019.12.16 |
ionic 5 #Modal Controller 추가하여 사용하기 (0) | 2019.12.03 |
댓글