Cancel Cydia app to install on a non-Jailbroken iPhone

I am part of the Apple developer program, so I can enter the code and install it on my device.

Is it possible to take the application from Cydia (it doesn't seem to use mobilesubstrate, it is packaged as .deb) and rewrite it so that I can install it on my non-jailbroken iPhone?

Thanks!

+7
iphone jailbreak
source share
4 answers

If the complete source code for this application is presented in .deb (which you can extract and see), you can probably refuse the code and put it on your device. However, you will need everything that the actual developer had, which, as I understand it, does not happen. (If you compile the iPhone application and see the contents of the .app package, you will see all your resources, but not the .h /. Files, just the data.momd file.

If you are doing some kind of complicated decompilation, you may be able to get all the files you need, but that's a different story.

+1
source share

Maybe. Depending on the application. Some applications are App Store applications (or similar) that have been or will be rejected. If this is one of them, extracting the .app file, then the binary code inside should make it work.

However, many Cydia applications require that they be installed in the "system" directory (/ Applications), so they will not work in the App Store / Developer directories, and may also require root access or access to other files that Apple will deny.

Best of all, if you want to run one of these applications, it is jailbreak.

+5
source share

You can use the terminal codesign built-in command to exit the application by typing:

 codesign -fs "iPhone Developer : <your name>" application.app 
+5
source share

As long as the application does not go beyond the Sandbox, you can abandon it using your developer account. You do not need a source for this.

You can check www.aironapp.com , it performs the recoding procedure. All you have to do is set up an Apple developer account.

+2
source share

All Articles