//
// PhobosConfig.h
// Pods
//
// Created by Thierry on 16/2/15.
//
//
#ifndef PhobosConfig_h
#define PhobosConfig_h
#ifdef DEBUG
#define phobosLog(...) NSLog(@"[Phobos] %@",__VA_ARGS__)
#else
#define phobosLog(...)
#endif
#define PhobosHaveOpenApp @"PhobosHaveOpenApp" //是否打开过APP
#define PhobosBeginTime @"PhobosBeginTime" //记录APP打开|从后台启动时的时间戳
#define PhobosEndTime @"PhobosEndTime" //记录APP退出|退到后台时的时间戳
#define PhobosCacheKey @"PhobosCacheKey"
#define PhobosShardCount 50 //收集数据分段发送的个数
#endif /* PhobosConfig_h */
-
Thierry authoredbb9ada8d