...
|
...
|
@@ -126,12 +126,6 @@ |
|
|
}
|
|
|
|
|
|
NSDictionary *commonInfo = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
YOHOAppReportDefaultAPPKey,YOHOAppReportKeyAK,
|
|
|
IsStrEmpty(appInfo.udid)?@"":appInfo.udid,YOHOAppReportKeyUDID,
|
|
|
IsStrEmpty(appInfo.ch)?@"":appInfo.ch,YOHOAppReportKeyCH,
|
|
|
IsStrEmpty(appInfo.os)?@"":appInfo.os,YOHOAppReportKeyOS,
|
|
|
IsStrEmpty(appInfo.osv)?@"":appInfo.osv,YOHOAppReportKeyOSV,
|
|
|
IsStrEmpty(appInfo.dm)?@"":appInfo.dm,YOHOAppReportKeyDM,
|
|
|
IsStrEmpty(appInfo.ps)?@"":appInfo.ps,YOHOAppReportKeyPS,
|
|
|
IsStrEmpty(appInfo.av)?@"":appInfo.av,YOHOAppReportKeyAV,
|
|
|
IsStrEmpty(appInfo.ab)?@"":appInfo.ab,YOHOAppReportKeyAB,
|
...
|
...
|
@@ -306,4 +300,16 @@ |
|
|
return str;
|
|
|
}
|
|
|
|
|
|
+(NSDictionary *)getDeviceInfo:(YH_PerformanceAppInfo*)appInfo{
|
|
|
NSDictionary *deviceInfo = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
|
YOHOAppReportDefaultAPPKey,YOHOAppReportKeyAK,
|
|
|
IsStrEmpty(appInfo.udid)?@"":appInfo.udid,YOHOAppReportKeyUDID,
|
|
|
IsStrEmpty(appInfo.ch)?@"":appInfo.ch,YOHOAppReportKeyCH,
|
|
|
IsStrEmpty(appInfo.os)?@"":appInfo.os,YOHOAppReportKeyOS,
|
|
|
IsStrEmpty(appInfo.osv)?@"":appInfo.osv,YOHOAppReportKeyOSV,
|
|
|
IsStrEmpty(appInfo.dm)?@"":appInfo.dm,YOHOAppReportKeyDM,
|
|
|
nil];
|
|
|
return deviceInfo;
|
|
|
}
|
|
|
|
|
|
@end |
...
|
...
|
|