Pb with ionic native contacts

Hello,
I try to use the plugin Ionic Native Contacts but I have a blank page after splashscreen.

I Installed this one :

$ ionic cordova plugin add cordova-plugin-contacts
$ npm install --save @ionic-native/contacts

After that on app.module.ts add :

import { Contacts, Contact, ContactField, ContactName } from ‘@ionic-native/contacts’;

and providers :

   Contacts,
   Contact,
   ContactField,
   ContactName,

and when I start application I have this one :

Can’t resolve all parameters for ContactField: (?, ?, ?).

Thank you very much for your help

Regards

Bomatch

Contacts looks like the only class managed by DI. The other three aren’t.

1 Like

Thank you very much, but I don’t understand. :clin d’œil:
What should I do ?

Regards