Reputation: 1
How do I update my IOS App with PhoneGap 2.7 to 3.4 when I use an old plugin.
My problem is that I use a PhoneGap plugin "ios-Tabbar plugin" which unfortunately has not been updated for PhoneGap 3 *.
Is it possible to update PhoneGap manual in Xcode, by replacing the packages and classes that belong to PhoneGap, just as you could in the old PhoneGap versions prior to 3.0.
Jacob
Upvotes: 0
Views: 79
Reputation: 3207
Main changes
in 2.7
<plugin name="Echo" value="Echo" onload="true" />
in 3.4
<feature name="Echo">
<param name="ios-package" value="Echo" />
</feature>
and you can use older native code because no changes in the native side check plugin dev docs 3.4 and 2.7 i think this may help you.
Upvotes: 1