You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2013/10/19 02:10:20 UTC

[3/3] git commit: [CB-4872] - updated paths to version files

[CB-4872] - updated paths to version files


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/287c3d31
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/287c3d31
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/287c3d31

Branch: refs/heads/master
Commit: 287c3d31db5a2e7b09ed9dd87b7b9de6c0f394e5
Parents: ab85718
Author: Tim Kim <ti...@adobe.com>
Authored: Mon Sep 23 17:32:25 2013 -0700
Committer: Tim Kim <ti...@adobe.com>
Committed: Thu Oct 17 13:33:57 2013 -0700

----------------------------------------------------------------------
 spec/plugins/EnginePluginAndroid/plugin.xml | 2 +-
 src/util/default-engines.js                 | 8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/287c3d31/spec/plugins/EnginePluginAndroid/plugin.xml
----------------------------------------------------------------------
diff --git a/spec/plugins/EnginePluginAndroid/plugin.xml b/spec/plugins/EnginePluginAndroid/plugin.xml
index 7ada4ae..dbbb4aa 100644
--- a/spec/plugins/EnginePluginAndroid/plugin.xml
+++ b/spec/plugins/EnginePluginAndroid/plugin.xml
@@ -26,7 +26,7 @@
     <engines>
         <engine name="cordova" version=">=3.0.0"/>
         <engine name="cordova-android" version=">=3.1.0"/>
-        <engine name="android-sdk" version=">=4.3"/>
+        <engine name="android-sdk" version=">=18.0.0"/>
     </engines>
     
 </plugin>

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/287c3d31/src/util/default-engines.js
----------------------------------------------------------------------
diff --git a/src/util/default-engines.js b/src/util/default-engines.js
index 4fd4a65..21f5feb 100644
--- a/src/util/default-engines.js
+++ b/src/util/default-engines.js
@@ -22,13 +22,15 @@ module.exports = function(project_dir){
         
         // TODO: these scripts have not been made!
         'apple-xcode' : 
-            { 'platform':'ios', 'scriptSrc':  path.join(project_dir,'cordova','apple-xcode-version') },
+            { 'platform':'ios', 'scriptSrc':  path.join(project_dir,'cordova','apple_xcode_version') },
         'apple-ios' : 
-            { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple-ios-version') },
+            { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple_ios_version') },
+        'apple-osx' : 
+            { 'platform':'ios', 'scriptSrc': path.join(project_dir,'cordova','apple_osx_version') },
         'blackberry-webworks' : 
             { 'platform':'blackberry10', 'scriptSrc': path.join(project_dir,'blackberry-webworks-version') },
         'android-sdk' : 
             // will have to parse string output from android list targets
-            { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android-sdk-version') }
+            { 'platform':'android', 'scriptSrc': path.join(project_dir,'cordova','android_sdk_version') }
     }
 };