jailbreak

Issues with dev phone unlock. Constantly getting 0x64 error

。_饼干妹妹 提交于 2019-12-13 05:07:43
问题 I have an old device, Lumia 800, it was unlocked about a year ago. Today i restored factory setting on the device and tried to unlock it, but i'm always getting the 0x64. I tried to: reboot the phone, reset its factory settings again, try to register with turned on/off WiFi / 3G / Location run with/without sim-card turned off skype Still nothing helps, any ideas? PS: i can see a device in my Dashboard, but DevTool returns me 0x64 and phone is still locked. 回答1: May be you Should UnRegister

UIEventSubtype missing elements

隐身守侯 提交于 2019-12-13 01:46:46
问题 The enum UIEventSubtype (iOS UIKit Framework) contains events such as play, pause, next, seek, etc. However, the iPod Access protocol contains numerous other events, such as select, up, down and back (think iPod with clickwheel). The iPod app on iOS can receive these other events and respond accordingly (move selection up/down/back in playlists), but developer apps don't have seem access to these controls. Does anyone know a way to receive these additional events in an iOS app (for jailbreak)

How to prevent auto-lock screen in hooking SpringBoard?

隐身守侯 提交于 2019-12-12 18:53:56
问题 My application needs the screen be unlocked to do some functions, usually this app runs as background process, how can I prevent auto-lock? I mean on jailbroken environment. Why does the code below can not be available from SpringBoard? [[UIApplication sharedApplication] setIdleTimerDisabled:YES]; 回答1: [[UIApplication sharedApplication] setIdleTimerDisabled:YES]; 回答2: Have a look on SpringBoard class This code should be run in SpringBoard: SpringBoard *sb = [UIApplication sharedApplication];

Failed to install ipa file programatically in iOS 6

本小妞迷上赌 提交于 2019-12-12 18:33:33
问题 I use MobileInstallationInstall to install ipa files in a jailbreak iOS. It works well in iOS5, but it fails in iOS6. I checked the logs and find the following: required to have an entitlement named "com.apple.private.mobileinstall.allowedSPI" with an array containing "Install" to call command Install Then I added a entitlement in .entitlements file which named "com.apple.private.mobileinstall.allowedSPI" with an array containing "Install" But it still fails. How can I fix it? 来源: https:/

Is it possible to capture touch events in the background on a jailbroken iOS device?

瘦欲@ 提交于 2019-12-12 18:22:17
问题 I have an installation project in mind which involves a hacked iPad - I'd like to have a background process running recording all the touch events regardless of what app is running in the foreground, and send them out via OSC. Note that this is using a jailbroken iPad with root access, and users will be alerted about not entering any sensitive data. But I'm not an iOS developer so I'm not sure if this is even possible. I'd appreciate any kind of input/suggestions. [edit] Since someone

Adding key to IPad keyboard

假装没事ソ 提交于 2019-12-12 16:27:49
问题 i am currently working on an iPad application, my client wants to add Function keys as in normal keyboard on Top of keypad which i have done. Problem is he wants a "Fn" key in the iPad system keyboard which ll show the Function keys when clicked. Is it possible without jail break ? as he sent me some pics where it is done.. but i have googled a lot, but i could n't find any Apple's document which says 'application will be rejected if it interfers with system keyboard or something like that..

iOS Processes Info (pid, uid, cpu, mem, …)

六月ゝ 毕业季﹏ 提交于 2019-12-12 15:18:15
问题 I'm writing app like System Activity in Mac. I used modified darwin.h and darwin.c from this topic. But it seems that it shows correct info only for certain fields (and some time ago it showed all correct info but only for current process - this app), for everything else it shows correct only pid, process name, group/owner. Everything else like cpu/mem/disk usage is nulled. I think it may be something with sandbox or security. Tried to move application to /Applications and setting root/wheel

Strange behavior on 64bit iOS devices when retrieving vm statistics

时光总嘲笑我的痴心妄想 提交于 2019-12-12 15:12:59
问题 I made a tweak that shows free ram inside hooked SpringBoard method. I am using this code: mach_port_t host_port; mach_msg_type_number_t host_size; vm_size_t pagesize; host_port = mach_host_self(); host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t); host_page_size(host_port, &pagesize); vm_statistics_data_t vm_stat; if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS){ ram = @"N/A"; }else{ natural_t bytes = (vm_stat.free_count * pagesize);

ios entitlements in jailbreak solution iOSOpenDev

大憨熊 提交于 2019-12-12 14:19:19
问题 I am using MobileWifi private framework to list all access points. Its a jailbroken phone and I use iOSOpenDev to compile and deploy. I included entitlements.xml in Project->BuildSettings->"Code Signing Entitlements" XML has <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.apple.wifi.manager-access</key> <true/> </dict> </plist> I still get error _wifi_manager