How can I detect LocallApStore
tool on the iPhone? Also the same question for iApFree
and iApCracker
.
So, for this thing you have to detect it's dylib. By calling
NSString *dylibPath = @"/Library/MobileSubstrate/DynamicLibrares/LocalIAPStore.dylib";
BOOL fileExiste = [[NSFileManager defaultManager] fileExiste
sAtPath:dylibPath];
If (fileExiste) {
NSLog (@"existe");
}
and others you have to detect there dylibs too, Good luck