user3480437
user3480437

Reputation: 1

How do I update my IOS App with PhoneGap 2.7 to 3.4 when I use an old plugin

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

Answers (1)

Arjun T Raj
Arjun T Raj

Reputation: 3207

Main changes

  1. config.xml structure changed

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

Related Questions