Jump to content

i0s_tweak3r

Senior Member
  • Posts

    809
  • Joined

  • Last visited

Everything posted by i0s_tweak3r

  1. Yeah Localiapstore and iAP26 both are great.. The updated iAP26 is in this forum.
  2. 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.
  3. 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..
  4. 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.
  5. 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

  6. 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]
  7. 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.
  8. Have you tried accessing files with iFunbox or iBackupBot?
  9. 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
  10. 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.
  11. 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

  12. 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.
  13. 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)
  14. 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
  15. @Zimon Does this hack still work? If so can you upload it somewhere else as the repo in hidden content is no longer available.
  16. 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.
  17. 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.
  18. 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.
  19. 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?
  20. Do you have friends that like to prank your phone by taking pictures without you looking? Don't want those nasty surprises in your camera roll? Kids taking photos when playing with your locked device? Or do you just want added security? Just made tweak to disable the camera while phone is locked, from both control center, and the new swipe left for instant access to camera on iOS 10. For iOS 9, it removes camera entirely from Control Center! You just need jailbroken iOS device running iOS 9.0 or higher, and obviously Cydia Substrate/ Mobile Substrate, and preference loader. (For settings) Download tweak: [Hidden Content] Just download tweak, transfer to device with file manager / open in Filza / iFile. Hit install. Respring. Enjoy tweak. Go to settings and find NoLockScreenCam in your tweak settings list to disable it at any time- no need to respring again. Also, the original version of this is on BigBoss Repo, update should appear there soon.. Added .deb to grab it b4 BigBoss if you want it.
  21. Thanks... lol been trying all ur other giveaways for this.
  22. I'd be eternally grateful. I wanna use it with my DJ app but hacked versions of app still don't show as premium when logging in from DJ app.
×
  • 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