4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-04-03 05:11:59 +08:00

CB-1852: Android version of model implemented, too bad it's all code names and not human readable

This commit is contained in:
Joe Bowser 2012-11-19 13:26:22 -08:00
parent 28ef765913
commit 7657faa9c3

@ -80,9 +80,7 @@ public class Device extends CordovaPlugin {
r.put("platform", Device.platform); r.put("platform", Device.platform);
r.put("name", this.getProductName()); r.put("name", this.getProductName());
r.put("cordova", Device.cordovaVersion); r.put("cordova", Device.cordovaVersion);
//JSONObject pg = new JSONObject(); r.put("model", this.getProductName());
//pg.put("version", Device.CordovaVersion);
//r.put("cordova", pg);
callbackContext.success(r); callbackContext.success(r);
} }
else { else {