Jump to content

i0s_tweak3r

Senior Member
  • Posts

    809
  • Joined

  • Last visited

Everything posted by i0s_tweak3r

  1. It's signed by one of the Chinese companies that developed the movie box app/ tweak.. If it was anyone else i wouldn't have trusted it. Apple updated their security, which required Saurik to update Impactor and at the time I didn't know there was a working update. This allowed me to bypass impactor and computer altogether. i should have just used one of the extender methods when i had the chance, or not played around with my provisioning profile on my original yalu install so i could've used date trick. I foolishly changed the xml portion of the provisioning profile changing days to live to 365 and the expiration date to a year from install date while i was jailbroken..., That didn't work lol.
  2. Original post was to Pgyer site, updated link added August 31th, and 1/28/18 Method of installing Yalu102 with a signed certificate that'll last longer then 7 days, and best part- no computer needed. Still high chance it will be revoked by Apple so once you install be sure to use Extender modified by Julio, tutorials for that in this forum. Most recent link working as of 1/28/18 [Hidden Content] After installing Yalu App from website, go to settings/ general/ profiles and device management and tap on newly installed profile, then hit trust. Make sure "Find My iPhone" and "Touch ID and Passcode" are all turned off before trying to jailbreak. Once app is open, hit "Go" and watch the magic happen. Yalu 102 is now installed and ready to use.. Tested with iOS 10.0.1 (which only worked with final Yalu 102 release).. All my tweaks are back and working fine. Update 1/28/18: NO ADVERTISING ALLOWED! app currently has yalu102 b7 (final Yalu release) under “tweaked apps” section. Just google NO ADVERTISING ALLOWED! in safari on you’re iOS 10 device and you’ll find link. (Don’t think allowed to share it here.) Credits: Updated link (July 2017) provided by: @ thegodslayerlol91 Help monitoring if links still working: @ XD10SX Original link and another updated one: (August 31th, 2017) @ i0s_tweak3r ----------------- Jailbreak made by Luca Tedesco, (qwertyoruiop) with a little help of an exploit from Ian Beer. ---------------- Note: Use at your own risk. The original site I used I trusted. The updated links are the Yalu app, but you never know if it's been altered. It's probably not, but always a possibility. Your best (safest) bet is to use computer and official source.
  3. Woah that's hella cool!
  4. BigBoss posted my first tweak to be hosted by a big repo, the NoLockScreenCam... Still working on updating it but am happy with the original version.   Anyways, thx to everyone who's helped me get where I am, and all who continue to inspire me to get better.

    1. Joka

      Joka

      Wow. Nice job! (y)

    2. TheArmKing

      TheArmKing

      Cool Work DUDE <3 

  5. Yeah Localiapstore and iAP26 both are great.. The updated iAP26 is in this forum.
  6. You have to change the bundle identifier. Say ur cloning Spotify, you'd change "com.spotify.client" to whatever u want. A lot of ppl just add a number at the end. Then after installing go to terminal and type "uicache". Theres a thread in here somewhere with a tutorial on cloning apps.. Haven't read it yet but i'm sure it'll help ya if ya search. Edit: Didn't read you were cloning Filza, thought it was a regular .ipa to begin with.. Anyways changing the bundle identifier should help if you haven't already. Idk tho I haven't cloned JB apps just .ipas.
  7. This is just a customization of the app so the status bar never disappears, no matter what screen your in or animation is playing, and jailbreak is hidden. There's other threads with Premium hacks. Not sure if offline playing is included. The one i have is everything premium but the offline.. The one by Julio Verno or whatever his name is..
  8. Check the reddit jailbreak forums for updates... but basically every time a jailbreak comes out, Apple patches it and updates iOS and stops signing jailbreakable versions, then people set up fake websites claiming to have jailbreaks.. All scams.. Fake Pangu. Fake Yalu. Fake Taigi. They imitate successful jailbreak devs in their website names.
  9. Apologies for recently flooding forum with tweaks a simpleton could have made. Will make sure next one has multiple features customizable by user in settings...

    Going to focus more on learning from tutorials for a while..  

    1. TheArmKing

      TheArmKing

      You are doing great bud (y) 

    2. ___Aaki___

      ___Aaki___

      you're doing a great job job , i love your lockscreen camera tweak <3

    3. i0s_tweak3r

      i0s_tweak3r

      Thanks.. Just made a repo to put my tweaks in as well, so users with them installed will be notified when there's an update/ added features.

      In Cydia you can hit "Add Repo" then put this link. 

      http://i0s-tweak3r.yourepo.com

  10. Hacked app: Spotify Link To App https://appsto.re/us/KSKwt.i Bundle ID: com.spotify.client App Version: 8.2.0 Hack Features 1.) Statusbar never hidden, so you can always see your battery life, time, cell bars, wifi connection etc. 2.) Hides Jailbreak Needed for hack: Jailbroken device iOS 8.0 or higher. Tested on 10.0.1 and 9.3.3. *Works in conjunction with other hacks that give premium features free.* Install, Respring, Enjoy. No settings. Looks great always on. [Hidden Content]
  11. Here are the different "ranks.". As far as which you can achieve quickest depends on what you are good at and have a desire to achieve.. They all take time tho.
  12. Have you tried accessing files with iFunbox or iBackupBot?
  13. Edit: Started project over and used Dida's handy template, then modified from there and finally got it. Still have no idea why it didn't work b4. I'll eventually figure it out. Just happy tweak is updated with pref bundle. ok so i studied a tutorial on preference bundles, deleted my original bundle and followed tutorial pretty much exactly. Went to compile and got an error Compiling Tweak.xm... Tweak.xm:6:75: error: expected ']' return [ [ [ NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] value for key:key] boolValue]; My code seems right in tweak.xm but maybe someone can see what's causing the compiling error? Edit:Found compiling error. should be "valueForKey"....now i'm back to original error of it not finding preferences. Everything compiles just won't build the bundle...Arggg Here is my tweak.xm file #define PLIST_PATH @"/var/mobile/Library/Preferences/prefbundle.plist" inline bool GetPrefBool(NSString *key) { return [ [ [ NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] value for key:key] boolValue]; } %hook SBPolicyAggregator -(bool) _allowsCapabilityLockScreenCameraSupportedWithExplanation:(id*)arg1 { if(GetPrefBool(@"kenabled")) { return FALSE; } return %orig; } //Begin hooking 2nd function in same class -(bool) _allowsCapabilityLockScreenCameraWithExplanation:(id*)arg1 { if(GetPrefBool(@"kenabled")) { return FALSE; } return %orig; } //end of 2nd hooked function %end //end of first hooked class %hook SBLockScreenTestPluginSettings -(bool) restrictCamera { if(GetPrefBool(@"kenabled")) { return TRUE; } return %orig; } //end of 2nd hooked class %end
  14. When you use Cydia Impactor, it revokes your free developer account though unfortuneately.. You have to sideload your apps using Xcode to keep it.. At least that's what happened to my free developer account I used b4 first using Impactor. It gives you a warning that by using impactor your developer account gets revoked when you use the tool, then if you hit continue it revokes dev account.
  15. Just submitted 2 tweaks to BigBoss Repo....

    1. TheArmKing

      TheArmKing

      Ok , let me accept them and feature it :) 

    2. i0s_tweak3r

      i0s_tweak3r

      lol my sarcasm detector needs tweaking... believed ya till i read the feature part lmao.

    3. ___Aaki___

      ___Aaki___

      you're doing a great job job , i love your lockscreen camera tweak <3

  16. I tried that already. Also checked SDK's for frameworks and it appears to be there for 9.0, 9.3 and 8.1. Under theos/sdks/SDK version/system/library/privateframeworks/preferences right? Also when I moved project to my 9.3 device, and changed makefile to target exactly the same as an old tweak with a pref bundle that works, it still got same error. will try deleting the 8.1 SDK I have and redownloading though. I've read that worked for other ppl with same error. Edit: Deleted my 8.1 SDK, redownloaded it, changed makefile target back to 8.1:10, and still get the same error.
  17. include theos/makefiles/common.mk ARCHS = armv7 armv7s arm64 export ARCHS = armv7 armv7s arm64 export TARGET = iphone:clang:9.0:10.0 BUNDLE_NAME = NoLockScreenCam NoLockScreenCam_FILES = NoLockScreenCam.mm NoLockScreenCam_INSTALL_PATH = /Library/PreferenceBundles NoLockScreenCam_FRAMEWORKS = UIKit NoLockScreenCam_PRIVATE_FRAMEWORKS = Preferences include $(THEOS_MAKE_PATH)/bundle.mk internal-stage:: $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/NoLockScreenCam.plist$(ECHO_END)
  18. Sorry to start a new thread but I searched and my problem was exactly the same as in this thread-https://iosgods.com/topic/41545-ld-warning-directory-not-found-for-option/ Since the thread was marked solved/ answered I'm guessing that's possibly why no one has offered a solution to my comment asking for help. I made a tweak with a preference bundle before on my iOS 9.3 device, but keep getting this error when trying to make the preference bundle/ entire package (for my newest tweak) on my iOS 10 device. I copied project to my iOS 9.3 device but still get same error... Stripping NoLockScreenCam... Signing NoLockScreenCam... Making all in nolockscreencam... Making all for bundle NoLockScreenCam... Copying resource directories into the bundle wrapper... Compiling NoLockScreenCam.mm... Linking bundle NoLockScreenCam... ld: framework not found Preferences clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [obj/NoLockScreenCam.bundle/NoLockScreenCam.64873355.unsigned] Error 1
  19. @Zimon Does this hack still work? If so can you upload it somewhere else as the repo in hidden content is no longer available.
  20. Lmao. I just googled how to remove the option with stock iOS and there's no way. Realized other people have already been wanting a tweak like this. Especially if you have little kids. My nephew took a million photos on my phone when he was visiting. Amazing how 2 year olds can work iPhones better then some 50-70 year olds lol.
  21. Get rid of the search bar...... ? Nah seriously tho, maybe make repping a post to see hidden content a requirement, instead of just commenting? That way new tweaks stay closer to the top and are easier to find, if ppl just rep older tweaks instead of commenting "thx" for the 30th page.
  22. Did this work for you? I keep getting the same errors you did lol and went step by step and ended with: I downloaded the Frameworks, made missing folder, even tried using iOS 8.1 SDK. Does 8.0 work? Edit: 8.0 SDK is not available to download, only 8.1 Edit2: Can you build iOS 10 springboard tweaks from an iOS 9.3 device (that doesn't have iOS 10 SDK) if it's an iOS 10 only feature? I've made hacks with preference bundles on my other device. This is first tweak trying to make one from my iOS 10 device.
  23. Did someone else think of it first? I had the idea because someone on my boat was talking about the old FB rape days before many people locked their iPhones. Or were you just mentioning to credit myself in preference bundle?
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines