When I build my project, js files of plugins are correctly added to the build, but Objective-C or Java files aren’t compiled with, so the plugins cannot work correctly.
Sometimes the builds fail after adding plugins. I had this issue with inAppBrowser. The solution was to remove the platform (ionic platform rm ios) and add it again.
I forget to specify : in build output, JS files of the plugins are correcly added to the build. It’s just the Objective-C/java files which are not compiled
The machine on which I had the problem is used for continous integration, so it start everytime with a fresh repo.
After the git clone, I was doing a ionic platform add ios, so it download plugins etc. I don’t know why, but plugins was not correctly added to the platform.
When after the ionic platform add ios, I do a ionic platform rm ios and another ionic platform add ios, it’s ok, the plugins correctly build on the platform…