Reputation: 7079
I am building a hybrid application using Cordova
and I am stuck at an email functionality. I am using Katzer email plugin from here https://github.com/katzer/cordova-plugin-email-composer.
cordova.plugins.email.open({ });
This functionality is working fine on my android device and when I tested it in IOS it's not working at all. No error is throwing from the application.
I am using Cordova version 5.4 and my IOS version is IOS 8.
What is wrong here?. Any help would be greatly appreciated.
Note: Will downgrading the version of Cordova helps?
Upvotes: 0
Views: 255
Reputation: 3101
Cordova iOS 4.0.0 has some significant changes, please read this blogpost from Cordova:
http://cordova.apache.org/announcements/2015/12/08/cordova-ios-4.0.0.html
That means, that you should be careful by using plugins, which are older then 08 Dec 2015.
If you make a downgrade, than you should call
cordova clean
That will cleanup project from build artifacts.
Upvotes: 2