I want add the cordova plugin: cordova-plguin-ms-adal. Because this plugin is not supported in the ionic-native. I don\'t know how to implement myself, so I open an issue an
You can use cordova plugin in ionic2 though the plugin is not supported by ionic-native. Add the required plugin to your project.
Open the file "Plugins.xml" and check for the target value under clobbers tag. In your case, it is Microsoft.ADAL.AuthenticationContext where Microsoft is the base class.
Open the ts file where you want to use the plugin.Use declare var Microsoft: any;
under import as it is a base class. Then call the method as Microsoft.ADAL.AuthenticationContext.your_method()