PPOTAnalyticsDefines.h 1.2 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // PPOTAnalyticsDefines.h
  3. #ifndef TRACKING_DEFINES_H
  4. #define TRACKING_DEFINES_H
  5. // "Page" is analytics-talk for "Screen"
  6. // "Link" is analytics-talk for "Button, underlined text, or other tappable affordance"
  7. // Versioning
  8. #define kAnalyticsVersion @"iOS:MODE:"
  9. // AppSwitch
  10. #define kAnalyticsAppSwitchWalletPresent @"mobile:otc:checkwallet:present:" // followed by protocol
  11. #define kAnalyticsAppSwitchWalletAbsent @"mobile:otc:checkwallet:absent:" // followed by protocol
  12. #define kAnalyticsAppSwitchPreflightBrowser @"mobile:otc:preflight:browser:" // followed by protocol
  13. #define kAnalyticsAppSwitchPreflightWallet @"mobile:otc:preflight:wallet:" // followed by protocol
  14. #define kAnalyticsAppSwitchPreflightNone @"mobile:otc:preflight:none:" // followed by protocol
  15. #define kAnalyticsAppSwitchToBrowser @"mobile:otc:switchaway:browser:" // followed by protocol
  16. #define kAnalyticsAppSwitchToWallet @"mobile:otc:switchaway:wallet:" // followed by protocol
  17. #define kAnalyticsAppSwitchCancel @"mobile:otc:switchback:cancel:"
  18. #define kAnalyticsAppSwitchReturn @"mobile:otc:switchback:return:"
  19. #endif /* TRACKING_DEFINES_H */