Skip to content

Commit

Permalink
Merge pull request #614 from ayeung/timob-5424
Browse files Browse the repository at this point in the history
TIMOB-5424: Android: Add missing parameters to the ti.start
  • Loading branch information
marshall committed Nov 11, 2011
2 parents 7ca102a + cb03d04 commit 78f24af
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,12 @@ public static TiAnalyticsEvent createAppStartEvent(TiApplication application, St
json = new JSONObject();
json.put("tz",GregorianCalendar.getInstance().getTimeZone().getRawOffset()/60000);
json.put("deploytype", deployType);
json.put("platform", TiPlatformHelper.getName());
json.put("os", TiPlatformHelper.getModel());
json.put("osver", TiPlatformHelper.getVersion());
json.put("version", application.getTiBuildVersion());
json.put("un", TiPlatformHelper.getUsername());
json.put("model", TiPlatformHelper.getModel());
json.put("app_version", application.getAppInfo().getVersion());
json.put("nettype", TiPlatformHelper.getNetworkTypeName());

Expand Down

0 comments on commit 78f24af

Please sign in to comment.