Jump to content

strejda603

Senior Member
  • Posts

    191
  • Joined

  • Last visited

Everything posted by strejda603

  1. You can try to search your app on appdb, but I'm afraid that because of security reasons it's not possible to just overwrite installed app... You have to uninstall the old one first..
  2. Add this on the beginning of your Makefile: TARGET := iphone:clang:latest:9.3
  3. You can use futurerestore, if you have blobs for your device saved.
  4. Use this tutorial: https://github.com/theos/theos/wiki/Installation-Linux
  5. Unfortunately, I don't think there is such an option...
  6. Did you set right permissions of your new binary? Ownership should be Mobile:Mobile (Owner:Group) and Access Permissions should be 777 (Read, Write, Execute for everyone)...
  7. Requested Award: Member of 1, 2, and 3 Years! Proof: https://iosgods.com/profile/20859-strejda603/ Hello @DiDA , Could I have those awards, please? Thank you!
  8. Theos (jailed version) 1. Download and install theos-jailed 2. Download .deb file of tweak, you want to implement (i.e. using Cydownload) 3. Extract and decrypt the app (Using CrackerXI+ on jailbroken device, or try to find ipa on Google) targeted by that .deb tweak. Save as a .ipa 3. Unpack the .deb file, using the command "dpkg-deb -x file.deb destination" 4. Create a new Theos project with the "jailed" template, using the decrypted .ipa 5. Copy the unpacked tweak at "destination/Library/MobileSubstrate/DynamicLibraries/tweak-name.dylib" to the root folder of your project, replacing "tweak-name" with the name of the tweak you downloaded 6. Add "TWEAK_NAME_INJECT_DYLIBS = tweak-name.dylib" (without quotes) to the top of your Makefile 7. Make package Now, theos should generated tweaked .ipa for you and then you just sideload it using Cydia Impactor or sign it via 3rd party services (or using your own Apple Developer Certificate ) and install to your device... https://github.com/kabiroberai/theos-jailed/wiki/Usage#general-usage ... these tutorials should help you
  9. I have found a solution for Google ads (Class = "GAD...SomeShait...") For a banner ad search for Class "GADBannerView", find and click on "-(void) setRootViewController:(id)" and set value of id to NULL... For full screen ad search for Class "GADFullScreenAdViewController", find and click on "-(bool) canPresentFromViewwController:(id)" and set value of bool to FALSE...
  10. I have found a solution for it! I had to put this code inside "control.pl" in my theos template: use DateTime; NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y');
  11. Hey guys, I would like to create custom variable for theos. In example @@DATECREATED@@ to print current date for my tweak deceptions (I'm soooo bored to edit it manually ) Like @@FULLPROJECTNAME@@ prints out tweak name in control and Makefile... Edit: I did it with adding this to my nic.pl: use DateTime; $NIC->variable("DATECREATED") = DateTime->now->strftime('%d/%m/%Y'); Is it possible to do it without editing original nic.pl? Thanks for suggestions!
  12. Modded/Hacked App: Groovepad - Music & Beat Maker By Easybrain Bundle ID: com.easybrain.make-music iTunes Store Link: https://apps.apple.com/us/app/groovepad-music-beat-maker/id1454398991 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate or Substitute. Hack Features: - Pro enabled iOS Hack Download Link: [Hidden Content] Installation Instructions (manual): STEP 1: Download the .deb file from the link above. STEP 2: Copy the file to your iDevice using any of the file managers mentioned above or skip this step, if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the hack installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Respring and enjoy the hack 😉 NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, or post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - strejda603 (for hack) - John Coates (for Flex3) - Tanner Bennett (for FLEXing) - Theos team (for making hack to be compiled and built .deb) - iOSGods.com (for tutorials!) Screenshots:
  13. No, I mean, what code should I use in my Tweak.x file? (I have created a tweak with theos and now I want to change this string - if it's possible, not patching binary for it) P.S.: I have also IDA Pro, so if you know how to do it in IDA, you can tell me
  14. Hey guys, I would like to change a string ("You are a Pro"), which is NSString property inside UITableViewLabel, to something else (i.e.: "You are NOOB! ;-)") and use it in Tweak.x file. Could someone give me a tip, how to do it? I've tried to use MSHook function, but I'm very begginer with C, so I have no idea, how to do it right... Here is the image with address and XREF of cfstring: Thank you!
  15. Hey Ayan007, I know that every popup of this kind in any app is annoying.. But you should understand that it's the only way, how to give developer some credit (like if you have some free app, there is 99% chance it will contains some ads and you have to pay, if you want to get rid of them)... I thought about it, but instead of making my tweaks paid or spammed with ads, I've decided to make it free with just this little popup.. After all, I've spent some time to create this tweak (I had to learn, how to do it and nobody have payed me a cent for that) and I think that one little popup when opening app isn't so catastrophic ... Hope you understand me.. If it is still unbearable for you, you can try to find out, how to disable this or you can create your own hack
  16. Amazing template! But theos gives me error when I'm trying to run "make package"... danielpitra@frnda: ~/Documents/Theos/airmailpremium] $ make package > Making all for tweak AirmailPremium… ==> Preprocessing Tweak.x… ==> Compiling Tweak.x (arm64)… Tweak.x:69:40: error: 'keyWindow' is deprecated: first deprecated in iOS 13.0 - Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes [-Werror,-Wdeprecated-declarations] [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:ig... ^ /Users/danielpitra/Documents/zálohy/theos-jailed/sdks/iPhoneOS13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:134:51: note: 'keyWindow' has been explicitly marked deprecated here @property(nullable, nonatomic,readonly) UIWindow *keyWindow API_DEPRECATED("Should not be us... ^ 1 error generated. make[3]: *** [/Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/Tweak.x.d9d90920.o] Error 1 rm /Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/Tweak.x.m make[2]: *** [/Users/danielpitra/Documents/Theos/airmailpremium/.theos/obj/arm64/AirmailPremium.dylib] Error 2 make[1]: *** [internal-library-all_] Error 2 make: *** [AirmailPremium.all.tweak.variables] Error 2 Anyone has a suggestion? Thank you!
×
  • 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