iOS-Runtime-Headers
iOS-Runtime-Headers copied to clipboard
IMEI in iOS 7
Hi, is there any other way to get IMEI using private api in iOS 7? The code below works fine in iOS 6, but not in iOS 7.
NSBundle *b = [NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/GAIA.framework"]; BOOL success = [b load]; Class SKTelephonyController = NSClassFromString(@"SKTelephonyController"); id tc = [SKTelephonyController sharedInstance]; NSLog(@"-- imei: %@", [tc imei]);
Need answer here too
Would be really glad if anyone could point us in the right direction. Thanks