Plugins plataforms

Hi, I have a general question regarding ionic. Not all plugins work for all platforms, in this case it can be installed in the same application?, for example: a video plugin for android and another video plugin for iOS and within the application indicate which one to use according to the platform. This is possible?

Yeah it is possible. With

constructor(private platform: Platform){}

...
if(this.platform.is('ios'){}

you can check on which Platform you are running and then call the one or the other native Plugin. Information about checking the Platform can be found here