Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to build an app for Cydia store?

Tags:

iphone

cydia

I have built an app for Apple's App Store, now I want to submit the app to the Cydia store. How can I do this? Should I just post the app.zip file built for the App Store to the Cydia store?

like image 888
bandw Avatar asked Jan 21 '11 07:01

bandw


2 Answers

There are a few differences compiling your app for Cydia vs the App Store. Big Boss does a good job explaining the difference in his post: How to Compile for Cydia Submission

like image 194
Dan Avatar answered Oct 05 '22 18:10

Dan


You should check out iOSOpenDev. It incorporates a lot of Cydia tweaks, Theos, Activator and all kinds of other things into Xcode. It allows you to create a new (Cydia) tweak of your choice and you can even launch that tweak on your device from Xcode.

To submit an "App Store" app, you would need to make sure you adjust the user directories. Since you will install the app into /Applications, there will be no sandbox; no Documents directory dedicated to just your application.

You will also need to sign your app with ldid. This "fake" code-signs your application so it can run in iOS. To submit the app to Cydia, you would need to find a repo you are comfortable with hosting the app, like BigBoss.

Be careful though, submitting an App Store app to Cydia could potentially get your app thrown out of the App Store and your developer account revoked.

like image 37
WrightsCS Avatar answered Oct 05 '22 17:10

WrightsCS