On Wed Feb 12 03:56 PM, Braden Shepherdson wrote:
> Do the check the same file? I thought they were different. They might
> check the
> same path in different platforms, but that script can
> return different things. I
> would consider that a bug as well.
>
> I don't see anything to be gained from changing the syntax.
>
They check the same *relative file* to the platform/project directory (so ya
can have different version script per platform).
Makes sense it was done that way in the beginning but could be improved now.
a) Issue is other/newer platforms don't have the 'check for version x'.
b) More a personal preference for:
<engine name="cordova" version=">=3.0.0"/>
<engine name="cordova" version=">=3.3.0" platform="android"/>
I can patch the code so that:
<engine name="cordova-android" version=">=3.3.0" />
<engine name="cordova-{$supported_platform} " version=">=3.3.0" />
Still works but is deprecated for 4.0
If "cordova" is meant to check the cli version, from what I can tell hasn't
been that way since Aug 2013
J