...
|
...
|
@@ -14,7 +14,6 @@ |
|
|
#include <sys/file.h>
|
|
|
#include <sys/socket.h>
|
|
|
#import <UIKit/UIKit.h>
|
|
|
#import <AdSupport/AdSupport.h>
|
|
|
#import "OpenUDID.h"
|
|
|
#import "JTSHardwareInfo.h"
|
|
|
#import "YHEventReport.h"
|
...
|
...
|
@@ -66,8 +65,6 @@ static NSString *const kAppFingerPrint = @"com.yoho.appfingerprint"; |
|
|
|
|
|
//Vendor标示符
|
|
|
self.ifv = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
|
|
|
//广告标示符
|
|
|
self.ifa = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
|
|
|
|
|
|
self.mac = [YH_Device getMacAddress];
|
|
|
|
...
|
...
|
@@ -81,6 +78,7 @@ static NSString *const kAppFingerPrint = @"com.yoho.appfingerprint"; |
|
|
|
|
|
- (NSDictionary *)jsonDictionary
|
|
|
{
|
|
|
|
|
|
return @{
|
|
|
YOHOAppReportKeyJsonKeyDeviceSV : self.sv ? self.sv : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceAK : self.ak ? self.ak : @"",
|
...
|
...
|
@@ -89,7 +87,7 @@ static NSString *const kAppFingerPrint = @"com.yoho.appfingerprint"; |
|
|
YOHOAppReportKeyJsonKeyDeviceOSV : self.osv ? self.osv : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceDM : self.dm ? self.dm : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceUDID : self.udid ? self.udid : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceIFA : self.ifa ? self.ifa : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceIFA : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceIFV : self.ifv ? self.ifv : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceRES : self.res ? self.res : @"",
|
|
|
YOHOAppReportKeyJsonKeyDeviceMAC : self.mac ? self.mac : @"",
|
...
|
...
|
|