I need to make sure a specific security policy (ActiveSync policy) is installed on an iOS-device in order to "lightly" authorise users of my app. Is this possible?
Any comments or resources describing any of this, would be nice.
I need to make sure a specific security policy (ActiveSync policy) is installed on an iOS-device in order to "lightly" authorise users of my app. Is this possible?
Any comments or resources describing any of this, would be nice.
You can check it by wether that target device is jailbroken
or not. Generally you can check it by check Cydia.app
is it inside application.
NSString *filePath = @"/Applications/Cydia.app";
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath])
{
// do something useful
}
Another possible outcome is, your app gets cracked. Here is one of the ways to detect if your app was cracked.