¡@

Home 

2014/10/15 ¤U¤È 10:05:53

iphone Programming Glossary: cydia

Bring App to foreground

http://stackoverflow.com/questions/11697451/bring-app-to-foreground

. In terms of bringing an app to the foreground there's at least a couple ways to handle that One would be to use Cydia to install the free utility open . With open you can issue a command line call to open any app by using its bundle ID e.g...

How to detect a jailbroken device? [duplicate]

http://stackoverflow.com/questions/12085504/how-to-detect-a-jailbroken-device

device iphone objective c ios jailbreak share improve this question On the majority of jailbroken devices Cydia is installed so you could simply check for its existence. RichardJ.Ross posted an answer to a similar question that was.. return NO #else BOOL isJailbroken NO BOOL cydiaInstalled NSFileManager defaultManager fileExistsAtPath @ Applications Cydia.app FILE f fopen bin bash r if errno ENOENT cydiaInstalled Device is jailbroken isJailbroken YES fclose f return isJailbroken..

Attempting to deploy my app on my jailbroken iphone, but the app closes immediately!

http://stackoverflow.com/questions/1285980/attempting-to-deploy-my-app-on-my-jailbroken-iphone-but-the-app-closes-immediat

Open Keychain Access on the Mac In the menu go to Keychain Access Certificate Assistant Create a Certification Name it Cydia Developer or whatever type is self signed root and check let me override defaults . The only option you need to set in the.. drag the newly compiled app to somewhere that is easy to get to from the terminal. In a terminal run 'codesign fs Cydia Developer path appname.app appname' Somehow get your app to the phone ssh cydia teleportation whatever and viola Working..

iOS - Cydia open command and its counterpart?

http://stackoverflow.com/questions/15333841/ios-cydia-open-command-and-its-counterpart

Cydia open command and its counterpart There is a Cydia command line utility called open which will open an iOS application and.. Cydia open command and its counterpart There is a Cydia command line utility called open which will open an iOS application and attach to the SpringBoard. Is there a corresponding..

Why do I get “Cocoa error 513” when write files to “/var/mydir/files” on an jailbroken iPhone?

http://stackoverflow.com/questions/17799629/why-do-i-get-cocoa-error-513-when-write-files-to-var-mydir-files-on-an-jail

the mobile user doesn't have write permissions directly under var . If you take a look at this document on building Cydia apps on thebigboss.org you'll see that they recommend that jailbreak apps create documents directories at var mobile Library..

How can I deploy an iPhone application from Xcode to a real iPhone device?

http://stackoverflow.com/questions/246422/how-can-i-deploy-an-iphone-application-from-xcode-to-a-real-iphone-device

deployment certificate share improve this question It sounds like the application isn't signed. Download ldid from Cydia and then use it like so ldid S Applications AccelerometerGraph.app AccelerometerGraph Also be sure that the binary is marked..

How do you make the iPhone vibrate for arbitrary durations?

http://stackoverflow.com/questions/265761/how-do-you-make-the-iphone-vibrate-for-arbitrary-durations

How to create .deb packages on Mac OS X

http://stackoverflow.com/questions/3989466/how-to-create-deb-packages-on-mac-os-x

to create .deb packages on Mac OS X I am trying to upload my app on Cydia and it requires .deb package. I am unable to figure out how to make .deb packages on mac. I am using 10.6.3 when I write..

How do I detect that an iOS app is running on a jailbroken phone?

http://stackoverflow.com/questions/413242/how-do-i-detect-that-an-ios-app-is-running-on-a-jailbroken-phone

share improve this question It depends what you mean by jailbreak. In the simple case you should be able to see if Cydia is installed and go by that something like NSString filePath @ Applications Cydia.app if NSFileManager defaultManager fileExistsAtPath.. case you should be able to see if Cydia is installed and go by that something like NSString filePath @ Applications Cydia.app if NSFileManager defaultManager fileExistsAtPath filePath do something useful For hacked kernels it's a little lot more..

How to set lock screen , wallpaper and Ringtone programmatically in iPhone?

http://stackoverflow.com/questions/4476777/how-to-set-lock-screen-wallpaper-and-ringtone-programmatically-in-iphone

lockPath2 @ private var mobile Library SpringBoard LockBackgroundPortrait.jpg These examples were used in one of my Cydia apps. Theres not really much more to them but these should get you going in the right direction. share improve this answer..

Programatically changing the iOS lock-screen

http://stackoverflow.com/questions/6243591/programatically-changing-the-ios-lock-screen

How to develop an app for Cydia and jailbroken iPhones

http://stackoverflow.com/questions/6788207/how-to-develop-an-app-for-cydia-and-jailbroken-iphones

to develop an app for Cydia and jailbroken iPhones I am starting to develop apps for iPhone. There is 1 specific app that I'd like to develop but Apple.. for iPhone. There is 1 specific app that I'd like to develop but Apple will for sure reject it so I want to do it for Cydia cause I think it is just useful. I'm trying to figure out how to use Theos and XCode to create my app but I can't understand..

How to detect “IAP crackers”?

http://stackoverflow.com/questions/7465713/how-to-detect-iap-crackers

already detect IAP crackers and prevent the fake IAP. I would like to detect which phone is using IAP cracker. For Cydia hacking tool I could find it with Application path. But for I don't believe iAP crackers fall into specific applications...

Keeping an app alive in background unlimited (for a Cydia app)

http://stackoverflow.com/questions/8626928/keeping-an-app-alive-in-background-unlimited-for-a-cydia-app

an app alive in background unlimited for a Cydia app I don't mind using private API's or anything of the kind that Apple doesn't like but would prefer a quick solution..

Best practices for iOS applications security

http://stackoverflow.com/questions/9448632/best-practices-for-ios-applications-security

threat and also Availability of hacking tools that allow to freely share a paid app with friends community seen in Cydia Availability of hacking tools that allow to get in app purchases without paying seen in Cydia and heard that it doesn't.. community seen in Cydia Availability of hacking tools that allow to get in app purchases without paying seen in Cydia and heard that it doesn't work with any app Revenue loss threat So I am wondering #1 what are best practices to get a better..

Attempting to deploy my app on my jailbroken iphone, but the app closes immediately!

http://stackoverflow.com/questions/1285980/attempting-to-deploy-my-app-on-my-jailbroken-iphone-but-the-app-closes-immediat

In a terminal run 'codesign fs Cydia Developer path appname.app appname' Somehow get your app to the phone ssh cydia teleportation whatever and viola Working app. To deploy with an Apple devel key just set your project build code sign identity..

iOS - Cydia open command and its counterpart?

http://stackoverflow.com/questions/15333841/ios-cydia-open-command-and-its-counterpart

iPhone APIs to access SMS, calendar, emails, call logs?

http://stackoverflow.com/questions/1536161/iphone-apis-to-access-sms-calendar-emails-call-logs

iphone run app as root

http://stackoverflow.com/questions/3847239/iphone-run-app-as-root

1 exit status . I believe this has to do with the privelages the app runs with. I have tried the setuid trick in the cydia developer faq. Can anyone please help EDIT this is the wrapper I am currently using # usr bin bash dir dirname 0 exec dir..

How to create .deb packages on Mac OS X

http://stackoverflow.com/questions/3989466/how-to-create-deb-packages-on-mac-os-x

bash dpkg deb command not found I've install fink Mac ports insert Mac DVD to find out but nothing helps. iphone osx cydia deb share improve this question I installed mac ports 1.7 through terminal as no package is available. After that I..

display soft keyboard (iPad) when is connected a bluetooth input device

http://stackoverflow.com/questions/4150724/display-soft-keyboard-ipad-when-is-connected-a-bluetooth-input-device

with a very short answer iPad detect if external keyboard is present an application developed by erica sadun for the cydia env http www.tuaw.com 2010 06 02 hacksugar bringing back the on screen keyboard Erica said that the trick is to answer to..

How to develop an app for Cydia and jailbroken iPhones

http://stackoverflow.com/questions/6788207/how-to-develop-an-app-for-cydia-and-jailbroken-iphones

some apps I had developed on XCode. Which steps should I follow I mean if some of you is used to develop apps for cydia what do you do You create a new template with Theos and then open your .mm file in XCode and create the .xib file Then when.. is not much info about it I am just lost... Thank you all very much in advance Best regards iphone xcode jailbreak cydia share improve this question The Theos application template will help you create a jailbreak application but you won't..

How to detect “IAP crackers”?

http://stackoverflow.com/questions/7465713/how-to-detect-iap-crackers

I can check that by calling Url Scheme but I don't know the name. Is there anybody who knows how iphone objective c cydia share improve this question The best solution at the moment seems to be verifying IAP transactions using an external..

(cydia dev) Call Answering Screen in iPhone

http://stackoverflow.com/questions/8590068/cydia-dev-call-answering-screen-in-iphone

cydia dev Call Answering Screen in iPhone What would be the class responsible for call answering screen. I think it's a private.. the caller display phone service. Does anyone know what class and method to the caller iphone objective c jailbreak cydia tweak share improve this question There are two classes responsible for that one for Phone call and second for facetime..

Keeping an app alive in background unlimited (for a Cydia app)

http://stackoverflow.com/questions/8626928/keeping-an-app-alive-in-background-unlimited-for-a-cydia-app

to different directions but maybe since then someone managed to dig it up already. iphone ios objective c jailbreak cydia share improve this question Depending on what your app is going to do you can hook MobileSubstrate. This will load with..