Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
[CB-1783] - updating version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Kim committed Oct 31, 2012
1 parent e84f049 commit 6b4fd01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Original file line Diff line number Diff line change
@@ -1 +1 @@
2.2.0rc2 2.2.0
2 changes: 1 addition & 1 deletion framework/ext/src/org/apache/cordova/device/Device.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public PluginResult execute(String action, JSONArray args, String callbackId) {
JSONObject device = new JSONObject(); JSONObject device = new JSONObject();
device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) ); device.put( FIELD_PLATFORM, new String(DeviceInfo.getPlatformVersion() ) );
device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) ); device.put( FIELD_UUID, new Integer( DeviceInfo.getDeviceId()) );
device.put( FIELD_CORDOVA, "2.2.0rc2" ); device.put( FIELD_CORDOVA, "2.2.0" );
device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) ); device.put( FIELD_NAME, new String(DeviceInfo.getDeviceName()) );
device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) ); device.put( FIELD_VERSION, new String(DeviceInfo.getSoftwareVersion()) );
result = new PluginResult(PluginResult.Status.OK, device); result = new PluginResult(PluginResult.Status.OK, device);
Expand Down

0 comments on commit 6b4fd01

Please sign in to comment.