how do I protect my iOS app from being cracked? [closed]

好久不见. 提交于 2019-11-30 04:06:40

It's very easy with little class, which I implemented: https://github.com/itruf/crackify

Just import Crackify.h and check:

BOOL cracked = [Crackify isCracked];

these are some check list to check whether your app is cracked.

  1. checking plist size
  2. checking signer identity
  3. checking if binary is crypted
  4. checking modified date of info.plist against modified date of package

If it's in the store it likely already has been cracked. I wouldn't waste your time trying to combat pirates, no-one has been able to so far. I suggest instead you focus upon building apps that people are willing to pay for, or free apps that are iAd supported.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!