|
|
|
|
|
by nolanbrown23
6244 days ago
|
|
We check for pirated apps in our iphone analytics library (we haven't released yet) and provide some tools to combat it. One of the ways we do it is using this code: NSDictionary *info = [bundle infoDictionary];
if ([info objectForKey: @"SignerIdentity"] != nil)
{
//app is pirated
}
|
|