Search code examples
iosobjective-ciphonesecuritydevelopment-environment

How to protect iOS Application from attackers using iXGuard


Code obfuscation Process is there in Android Using DexGuard like that they are newly introduce iXGuard. Can any one know how to implement iXGuard in iOS project.


Solution

  • To protect an application with iXGuard you'll need to run ixguard-install from the terminal in the root of your Xcode project. It will update the project file and add a new iXGuard build phase, which calls the iXGuard binary as part of building your app. You'll also need to create a ixguard.yml configuration file to enable the different features.

    For more information you can check the manual which is located (after installation) in /Library/iXGuard/documentation/

    (I'm one of the developers of iXGuard)