jailbreak

Is there a private API available to access the SIM Toolkit?

我的梦境 提交于 2020-01-23 14:14:45
问题 I'm investigating what APIs are available for accessing the SIM toolkit, does anything exist? (Yes I know any use of such an API wouldn't permit the app to be submitted to the app store) 回答1: 1) You can take a look at CoreTelephony framework (disassemble it). It has bunch of functions around SimToolkit like: CTServerConnectionCopySimToolkitMenu CTServerConnectionSelectSimToolkitMenuItem and so on. 2)You can take a look (disassemble) at /System/Library/SpringBoardPlugins/SimToolkitUI

Is there a private API available to access the SIM Toolkit?

前提是你 提交于 2020-01-23 14:14:12
问题 I'm investigating what APIs are available for accessing the SIM toolkit, does anything exist? (Yes I know any use of such an API wouldn't permit the app to be submitted to the app store) 回答1: 1) You can take a look at CoreTelephony framework (disassemble it). It has bunch of functions around SimToolkit like: CTServerConnectionCopySimToolkitMenu CTServerConnectionSelectSimToolkitMenuItem and so on. 2)You can take a look (disassemble) at /System/Library/SpringBoardPlugins/SimToolkitUI

Distribute unsigned app iPhone

喜欢而已 提交于 2020-01-16 10:10:09
问题 Is there any way to distribute an unsigned app through emails or internet? I.e. itms-services://?action=download-manifest&url=URL_TO_PLIST . Moreover, it is a security issue if it is possible to install unsigned app on a jailbroken device? Thank you. 回答1: I can't quite understand what you're trying to do here - if you're trying to install an app that is not on the App Store and also unsigned with the itms-services -protocol, you are out of luck, as that is strictly for iTunes and App Store

Capture incoming Callevent using coretelephony?

假装没事ソ 提交于 2020-01-14 04:39:08
问题 I want to create an application for jailbroken iphone (ios 4.0 or greater). I want my application to remain running and whenever my phone starts ringing (for an incoming call), my application should be able to capture that "call incoming" event and based on that i could perform some function e.g. lower speaker volume. Can anyone guide me to the right direction, as to how can i capture such event, or if it is available in private coretelephony framework ? 回答1: Are you sure you want to monitor

Scan networks (SSID's) on iOS 7 by using private API

送分小仙女□ 提交于 2020-01-11 06:00:06
问题 Is it possible to get list of SSID's of networks around by using private API on iOS 7 Jailbroken device? I know about MobileWiFi.framework that manages WiFi functionality on iOS. (It replaces the obsolete Apple80211 framework.) Here is 4 years old answer how to use it: Accessing & Using the MobileWiFi.framework I tried to use these methods on iOS 7, but have no luck. In one of the comments of author of this solution I receive this answer: scanNetworks fails because that code is now 4 years

Can i check in app purchase on jailbreak [closed]

与世无争的帅哥 提交于 2020-01-07 09:54:14
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 8 years ago . I am just worried that can i test in app purchase on the iphone which is jail broken Please tell me i have used all weapons to use it in my device but every time the Productid is zero please help 回答1: There is a

Titanium.App.Properties is it safe

五迷三道 提交于 2020-01-06 16:08:46
问题 I'm using Titanium.App.Properties to store user highly confidential data. So is it safe to store values here. Is it possible jailbreak iPhone's to leak this values. Is this values encrypted or stored as plain text? Thanks in Advance. 回答1: Here is an update to this old question: From Titanium 3.X docs: As of Release 3.2.0, any application properties defined in the tiapp.xml file are stored in the device's secure storage, making them read-only. Additionally, external access to these properties

CLLocationmanager setAuthorizationStatus doesn't work (jailbreak)

寵の児 提交于 2020-01-03 04:52:04
问题 I have jailbroken device with 6.1.3 iOS. Also I have command-line tool that should give me coordinates. Code that is about location works perfectly with normal application, but not in command line. I found similar question, but it doesn't seems to work: Get GPS without alert view with ROOT permission(jailbreak) - (void) start { NSLog(@"Started"); if ([CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorized) { NSLog(@"%i", [CLLocationManager authorizationStatus]); } //

CLLocationmanager setAuthorizationStatus doesn't work (jailbreak)

ⅰ亾dé卋堺 提交于 2020-01-03 04:52:04
问题 I have jailbroken device with 6.1.3 iOS. Also I have command-line tool that should give me coordinates. Code that is about location works perfectly with normal application, but not in command line. I found similar question, but it doesn't seems to work: Get GPS without alert view with ROOT permission(jailbreak) - (void) start { NSLog(@"Started"); if ([CLLocationManager authorizationStatus] != kCLAuthorizationStatusAuthorized) { NSLog(@"%i", [CLLocationManager authorizationStatus]); } //

Which method is called when device is about to be unlocked?

柔情痞子 提交于 2020-01-02 13:28:07
问题 I would like to know where the -(void)unlock (or whatever is called) used when we "slide to unlock" on the LockScreen is. Has anyone an idea ? 回答1: Try these iOS 4 - 5 SBAwayController -(void)_finishedUnlockAttemptWithStatus:(char) Argument will be non zero (I don't quite sure it will always be 1 when device is unlocked) when device is about to be unlocked. iOS 6 SBAwayController -(void)_finishUnlockWithSound:(char) unlockSource:(int) isAutoUnlock:(char) iOS 7 SBLockScreenViewController -