jailbreak

Xcode 4.2: Error 0xC002 when trying to use a jailbroken iPhone 3G for development

不问归期 提交于 2019-12-20 09:49:28
问题 I have this jailbroken iPhone 3G with iOS version 4.2.1 (the latest supported version). When I connect it to Xcode 4.2, Xcode starts copying the debug symbols. It stops copying towards the end of the process, and shows the following error: Xcode has encountered an unexpected error (0xC002) No such file or directory, at ‘/SourceCache/DTDeviceKit/DTDeviceKit-867/DTDeviceKit/DTDeviceKit_Utilities.m:864’ Anybody experiencing anything similar? I know I should try and restore the phone, but I'm

How can I access specific iOS app's directory with Objective C?

非 Y 不嫁゛ 提交于 2019-12-20 09:14:09
问题 I'm trying to write an app for jailbroken iOS devices that can load files from another app. But appstore apps are stored in folders with seemingly random characters that vary per device. How can I figure out the directory for X app on the device? On iOS 8, achieving this seems harder due to the way the app filesystem is structured. 回答1: iOS 7 and below AppStore apps are installed in /var/mobile/Applications inside directory with random name. App's directories (documents, library etc) and *

Is it possible to load a separate application into the iphone?

放肆的年华 提交于 2019-12-20 06:29:26
问题 I am having a iphone and i have created an application using Xcode. Now i want to move this application into my iphone for my use. How can it be done? I tried to copy my application to the iphone Applications folder using the phone view software, but i'm not able to open my application in the iphone. It shows the error "Your Myapp.app cannot be open" Is there any other way to install my application into the iphone? Please guide me regarding this. Thanks 回答1: You'll need to register as an

Read sms.db and call_history.db file on iOS?

…衆ロ難τιáo~ 提交于 2019-12-20 04:30:17
问题 I am developing an application for a jailbroken iPhone 5s (iOS 7.1.1) to fetch call logs and messages stored in the respective .db files.I have certain queries: I have a valid certificate, provisioning profile and my app is signed using this profile, so is it necessary to remove this profile and sign the app with ldid (if so why and what are the steps?) Does my app needs to have root permission to access the databases (/var/wireless/Library/CallHistory/call_history.db) and (/var/mobile

Automatically send SMS on iOS 6 jailbreak

若如初见. 提交于 2019-12-20 04:14:21
问题 Having spent a couple of months on the internet and stackoverflow, I cannot find a way to send an SMS from an iPhone with iOS 6 (6.1 to be precise) when an event occurs or with a tweak. I've read that apple has changed the way SMS messages are being processed since iOS 5 and to be specific The main difficulty comes from the fact that Apple introduces an IPC mechanism in iOS 6 that resembles the "Share" functionality in Android. Unlike before where sending an SMS is a direct call in

iOS Caller ID Retrieve

亡梦爱人 提交于 2019-12-20 03:52:26
问题 I'm trying to get the caller number (for jailbroken devices) with this code: extern CFTypeRef CTCallCopyName(void*, CTCall* call); NSLog(@"%@", CTCallCopyName(NULL, (CTCall*)call)); I receive the error: "CTCallCopyName(void*, CTCall*)", referenced from: ld: symbol(s) not found for architecture armv6 I have Core Telephony linked with my project. Maybe my prototype is wrong... i don't know. Any ideas? Xcode 3, sdk 4 回答1: If you're calling this API in a .mm file, you have to declare it like

How can I simulate the touch events by IOHIDEvent?

…衆ロ難τιáo~ 提交于 2019-12-20 03:11:38
问题 I want to simulate touch events on iOS 6. I learned something useful from IOHIDEvent , which is a low-level functions bundle for human interface devices. From: https://github.com/kennytm/iphone-private-frameworks/tree/master/IOKit/hid I got the private framework with IOHIDEvent , but the headers were changed after iOS 4, and some functions were not supported any more. Does anyone know how to get the functions in iOS6, or known how to simulate the events at system-level? 回答1: As I mentioned in

How I can access the call log/history of iPhone

那年仲夏 提交于 2019-12-19 11:16:24
问题 This is for jailbroken iPhone. Is there a way I can access the call_history.db on iPhone which is a database where apple logs the phone call information. It is stored at /private/var/mobile/Library/CallHistory directory. When I try to enumerate directory paths under /private/var/mobile/Library it does not list CallHistory folder but everything else. I guess Apple does allow access somehow despite of having all the permissions. Is there a way I can get access to call_history.db and copy it

How I can access the call log/history of iPhone

风格不统一 提交于 2019-12-19 11:16:04
问题 This is for jailbroken iPhone. Is there a way I can access the call_history.db on iPhone which is a database where apple logs the phone call information. It is stored at /private/var/mobile/Library/CallHistory directory. When I try to enumerate directory paths under /private/var/mobile/Library it does not list CallHistory folder but everything else. I guess Apple does allow access somehow despite of having all the permissions. Is there a way I can get access to call_history.db and copy it

App for jailbroken iOS device: Consistent background operation

耗尽温柔 提交于 2019-12-19 10:21:37
问题 I am the author of a Cydia tweak called AirFloat. An app that implements the AirPlay audio protocol (previously known as AirTunes), making it possible to stream audio to your iOS device. AirFloat is originally an App Store app, until it got booted by Apple from the App Store. I've since that made it available for free in Cydia. Currently the app stands in Cydia exactly as the previous App Store version. As a result of this I get a lot of requests to make it work in the background. But I