Convert a regular xcode application project to iOSOpenDev

I am new to jailbroken dev. I have a regular xcode application project. Now I need to convert it or create a new application project using iOSOpenDev for jailbroken dev. I found the same question:

converting an xcode project to iOSOpenDev

But I do not know what to do with the first step. Do I need to add some settings or change some values โ€‹โ€‹of existing settings? Please provide more details.

thanks!

+4
source share
1 answer

About the first step, I made several attempts, and it worked. The following steps are the same as cocoabim:

1. change the installation path to /Applications ; add iOSOpenDev include, lib, the path to the infrastructure folder in Framework Search Paths , remove iphonesimulator from Supported Platforms in Build Settings , Header Search Paths , Library Search Paths (I'm not sure if this is necessary);

  • Add the build phase of the script (should be the last in order) to the existing target that runs /opt/iOSOpenDev/bin/iosod --xcbp .

3.Create a Debian package management file in the existing target folder as (target directory)/Package/DEBIAN/control .

4. Reform the assembly for profiling (Cmd-Shift-I).

+4
source

Source: https://habr.com/ru/post/1441178/


All Articles