We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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]);
The text was updated successfully, but these errors were encountered:
Need answer here too
Sorry, something went wrong.
Would be really glad if anyone could point us in the right direction. Thanks
No branches or pull requests
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]);
The text was updated successfully, but these errors were encountered: