Skip to content

Commit

Permalink
[tidev#1105 state:resolved] The properties got added during build, bu…
Browse files Browse the repository at this point in the history
…t were pulled from appProperties instead of systemProperties
  • Loading branch information
donthorp committed Jul 7, 2010
1 parent dbff99b commit 0015450
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ public void setRootActivity(TiRootActivity rootActivity)
needsEnrollEvent = analyticsModel.needsEnrollEvent();

if (needsEnrollEvent()) {
String deployType = appProperties.getString("ti.deploytype", "unknown");
String deployType = systemProperties.getString("ti.deploytype", "unknown");
postAnalyticsEvent(TiAnalyticsEventFactory.createAppEnrollEvent(this,deployType));
}

if (needsStartEvent()) {
String deployType = appProperties.getString("ti.deploytype", "unknown");
String deployType = systemProperties.getString("ti.deploytype", "unknown");

postAnalyticsEvent(TiAnalyticsEventFactory.createAppStartEvent(this, deployType));
}
Expand Down

0 comments on commit 0015450

Please sign in to comment.