Jump to content

42 posts in this topic

Recommended Posts

Posted

Make file 

TARGET := iphone:clang

TARGET_SDK_VERSION := 8.1
TARGET_IPHONEOS_DEPLOYMENT_VERSION :=8
ARCHS := armv7 arm64

include /var/theos/makefiles/common.mk

TWEAK_NAME = Biztweak
Biztweak_FILES = Tweak.xm
Biztweak_FRAMEWORKS = UIKit

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
        install.exec "killall -9 SpringBoard"

  • Replies 41
  • Created
  • Last Reply

Top Posters In This Topic

Posted (edited)

Try not to mess with it. Also please click the code button to show it like this its a lot easier to read.

Tweak.xm

#import <substrate.h>
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

%hook SBPowerDownController

-(void)orderFront{

UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Hello"

message:@"Noooo"    // IDK if it supports emojis, I think it does but try without first.
delegate:self

cancelButtonTitle:@"Okay"
otherButtonTitles:@ nil]; 

[alert show];

}
%end

Make file

ARCHS = armv7 arm64

include theos/makefiles/common.mk

TWEAK_NAME = Biztweak      // Make sure "Biztweak" is still the name of your tweak folder name.
Biztweak_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

Biztweak_FRAMEWORKS = UIKit

CFLAGS = -w

after-install::
        install.exec "killall -9 SpringBoard"    // Try removing this line if it doesn't work as it can cause compiling issues.

Try not to change it. I recommend you delete your iOS 8 SDK because it seems to be wrong a bit.

I think that's all right, just replace it with the current one.

Updated by Fadexz
Code fix.
Posted

@Fadexz hey I still get the same error 


ld: library not found for -lobjc
clang-3.7: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [obj/firstPatch.bundle/firstPatch.64873355.unsigned] Error 1
 

I've make links and links with library's and out them in the sdk folder tried afew other lines and still same error, think  Theo's could be broken ?? Or is it working just not linking to the library needed ?? Thanks again

Posted (edited)

@staybizzy Try this which I found somewhere.

export TARGET := iphone:clang:8.4:6.1 export ARCHS := armv7 arm64

include theos/makefiles/common.mk

TWEAK_NAME = Biztweak      // Make sure "Biztweak" is still the name of your tweak folder name.
Biztweak_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

Biztweak_FRAMEWORKS = UIKit

CFLAGS = -w

after-install::
        install.exec "killall -9 SpringBoard"    // Try removing this line if it doesn't work as it can cause compiling issues.

IDK. If it doesn't work its probably your Theos missing stuff or someone else may know what is happening.

Updated by Fadexz
Posted

@Fadexz il try it but I've tried a lot of templates and even copied make files and tweak.xm from YouTube running the same Theo's and won't link the library on mine so think later today will try Theo's on my iPhone 4s 9.3.5 jailbreak think Theo's will work on the Phoenix jailbreak 9.3.5 ?? 

Posted
1 hour ago, staybizzy said:

@Fadexz il try it but I've tried a lot of templates and even copied make files and tweak.xm from YouTube running the same Theo's and won't link the library on mine so think later today will try Theo's on my iPhone 4s 9.3.5 jailbreak think Theo's will work on the Phoenix jailbreak 9.3.5 ?? 

Yeah give that a try.

What do you spell Theos "Theo's" lol.

Posted

@FadexzIt was auto corrected then sorry lol yeh I tried that And now I get 

Your current SYSROOT, "/var/mobile/biztweak/theos/sdks/iPhoneOS8.4sdk", appears to be missing.

so changed the 

Export TARGET := iphone:clang:8.4:3.7

To

export TARGET :=iPhone:clang:10.1:3.7

to try target the 10.1 sdks and then says same error but not been able to find the 10.1 sdks 

il try change then name of the folder to iohoneOS10.1sdk and see if that helps locate it apart from that I'm lost lol  thanks for ur time helping me and searching thins for me 

 

Posted

Ok so tried changing name on sdk folder I now get this 

 

Compiling Tweak.xm...
In file included from <built-in>:351:
In file included from <command line>:3:
/var/mobile/biztweak/theos/Prefix.pch:2:10: fatal error: 
      'Foundation/Foundation.h' file not found
        #import <Foundation/Foundation.h>
                ^

 

so i go to var/mobile/biztweak/theos/prefix.pch:2:10:fatal error 

 

and I see this ⬇️

 

#ifdef __OBJC__
        #import <Foundation/Foundation.h>
        #if TARGET_IPHONE || TARGET_IPHONE_SIMULATOR
                #import <UIKit/UIKit.h>
        #endif

        #define CLASS(cls) objc_getClass(#cls)

        #ifdef DEBUG
                #define __DEBUG__
        #endif
        
        #ifdef __DEBUG__
                #define CMLog(format, ...) NSLog(@"(%s) in [%s:%d] ::: %@", __PRETTY_FUNCTION__, __FILE__, __LINE__, [NSString stringWithFormat:format, ## __VA_ARGS__])
                #define MARK    CMLog(@"%s", __PRETTY_FUNCTION__);
                #define START_TIMER NSTimeInterval start = [NSDate timeIntervalSinceReferenceDate];
                #define END_TIMER(msg)  NSTimeInterval stop = [NSDate timeIntervalSinceReferenceDate]; CMLog([NSString stringWithFormat:@"%@ Time = %f", msg, stop-start])
        #else
                #define CMLog(format, ...)
                #define MARK
                #define START_TIMER
                #define END_TIMER(msg)
                //#define NSLog(...)
        #endif

        #define NB [NSBundle mainBundle]
        #define UD [NSUserDefaults standardUserDefaults]
        #define FM [NSFileManager defaultManager]
#endif

~~~~~~~~~~~~~~~~~~~~~ 

And at the top is 

     #import <Foundation/Foundation.h>
                ^

so the files is where it said it was but won't pick it up lol 

And I also have same line in the tweak.xm also so confused.com lol 

Posted
27 minutes ago, staybizzy said:

Ok so tried changing name on sdk folder I now get this 

 

Compiling Tweak.xm...
In file included from <built-in>:351:
In file included from <command line>:3:
/var/mobile/biztweak/theos/Prefix.pch:2:10: fatal error: 
      'Foundation/Foundation.h' file not found
        #import <Foundation/Foundation.h>
                ^

 

so i go to var/mobile/biztweak/theos/prefix.pch:2:10:fatal error 

 

and I see this ⬇️

 

#ifdef __OBJC__
        #import <Foundation/Foundation.h>
        #if TARGET_IPHONE || TARGET_IPHONE_SIMULATOR
                #import <UIKit/UIKit.h>
        #endif

        #define CLASS(cls) objc_getClass(#cls)

        #ifdef DEBUG
                #define __DEBUG__
        #endif
        
        #ifdef __DEBUG__
                #define CMLog(format, ...) NSLog(@"(%s) in [%s:%d] ::: %@", __PRETTY_FUNCTION__, __FILE__, __LINE__, [NSString stringWithFormat:format, ## __VA_ARGS__])
                #define MARK    CMLog(@"%s", __PRETTY_FUNCTION__);
                #define START_TIMER NSTimeInterval start = [NSDate timeIntervalSinceReferenceDate];
                #define END_TIMER(msg)  NSTimeInterval stop = [NSDate timeIntervalSinceReferenceDate]; CMLog([NSString stringWithFormat:@"%@ Time = %f", msg, stop-start])
        #else
                #define CMLog(format, ...)
                #define MARK
                #define START_TIMER
                #define END_TIMER(msg)
                //#define NSLog(...)
        #endif

        #define NB [NSBundle mainBundle]
        #define UD [NSUserDefaults standardUserDefaults]
        #define FM [NSFileManager defaultManager]
#endif

~~~~~~~~~~~~~~~~~~~~~ 

And at the top is 

     #import <Foundation/Foundation.h>
                ^

so the files is where it said it was but won't pick it up lol 

And I also have same line in the tweak.xm also so confused.com lol 

You are missing the headers in your SDK, try add more headers to the include folder in Theos.

Make sure you have iOS Tool Chains I think it is (and BigBoss Recommended Tools).

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Hardcore Leveling Warrior Cheats v1.6.0 +5
      Modded/Hacked App: Hardcore Leveling Warrior By SuperPlanet corp.
      Bundle ID: com.superplanet.lucid3.global
      iTunes Store Link: https://apps.apple.com/us/app/hardcore-leveling-warrior/id6737226714?uo=4

      Hack Features

      - God Mode 
      - One Hit Kill
      - Multiply Attack
      - Multiply Defense
      - PREMIUM (No Ads, Speed, etc ..)


      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
       

      iOS Hack Download Link https://iosgods.com/topic/191048-hardcore-leveling-warrior-cheats-v111-5/
      • 116 replies
    • Candy Crush Saga v1.315.0 Jailed Cheats +3
      Modded/Hacked App: Candy Crush Saga By King.com Limited
      Bundle ID: com.midasplayer.apps.candycrushsaga
      iTunes Store Link: https://apps.apple.com/us/app/candy-crush-saga/id553834731?uo=4


      Hack Features:
      - Infinite Life
      - Infinite Booster
      - Infinite Move


      Jailbreak required hack(s): https://iosgods.com/topic/190447-candy-crush-saga-cheats-v12941-3/


      iOS Hack Download IPA Link: https://iosgods.com/topic/190448-candy-crush-saga-v12941-jailed-cheats-3/
      • 163 replies
    • Barbie Dreamhouse Adventures Cheats v2025.7.4 +1
      Modded/Hacked App: Barbie Dreamhouse Adventures By Budge Studios
      Bundle ID: com.budgestudios.BarbieDreamhouse
      iTunes Store Link: https://apps.apple.com/us/app/barbie-dreamhouse-adventures/id1296796112?uo=4


      Hack Features:
      - PREMIUM


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/150378-barbie-dreamhouse-adventures-v202180-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/150377-barbie-dreamhouse-adventures-cheats-v202180-1/
      • 81 replies
    • BitLife - Life Simulator Cheats v3.21.1 +2
      Modded/Hacked App: BitLife - Life Simulator by Candywriter, LLC
      Bundle ID: com.wtfapps.apollo16
      iTunes Store Link: https://apps.apple.com/us/app/bitlife-life-simulator/id1374403536?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - Free Bitizen Purchase (Press Cancle) - Work for All Versions


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/84167-arm64-bitlife-life-simulator-v1412-jailed-cheats-2/


      Hack Download Link: https://iosgods.com/topic/84223-arm64-bitlife-life-simulator-cheats-all-versions-2/
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 3,814 replies
    • Travel Town - Merge Adventure v2.12.1301 Jailed Cheats +1
      Modded/Hacked App: Travel Town - Merge Adventure By Magmatic Games Ltd
      Bundle ID: io.randomco.travel
      iTunes Store Link: https://apps.apple.com/us/app/travel-town-merge-adventure/id1521236603?uo=4


      Hack Features:
      - Infinite Currencies


      iOS Hack Download Link: https://iosgods.com/topic/148953-travel-town-merge-adventure-v212287-jailed-cheats-1/
        • Agree
        • Like
      • 847 replies
    • Peanuts: Snoopy Town Tale Cheats v4.6.4 +2
      Modded/Hacked App: Peanuts: Snoopy Town Tale By PIXOWL INC.
      Bundle ID: com.activision.peanuts
      App Store Link: https://apps.apple.com/us/app/peanuts-snoopy-town-tale/id1013992870?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Freeze Currencies
      - Free iAP

       

      Non-Jailbroken Hack: https://iosgods.com/topic/95917-peanuts-snoopy-town-tale-v462-jailed-cheats-1/
      • 107 replies
    • Demon Hunter Idle Cheats v1.16.0 +3
      Modded/Hacked App: Demon Hunter Idle By MOBIRIX
      Bundle ID: com.mobirix.mbpdh
      iTunes Store Link: https://apps.apple.com/us/app/demon-hunter-idle/id6472879858?uo=4


      Hack Features:
      - Multiply Attack
      - Multiply Defense
      - Freeze Currencies*

      *NOTE: Do not abuse or buy ViP for just this cheat


      iOS Hack Download Link: https://iosgods.com/topic/183710-demon-hunter-idle-cheats-v102-3/
      • 185 replies
    • Pixel Fantasia Cheats v3.0.27 +3
      Modded/Hacked App: Pixel Fantasia By SUPERBOX. Inc
      Bundle ID: com.idle.pseudo3d.hero.ios
      iTunes Store Link: https://apps.apple.com/us/app/pixel-fantasia/id1610992852?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - God Mode
      - One Hit Kill
      - Free Store ( not Free iAP ) -- Turn on when you want to buy


      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/167825-pixel-fantasia-cheats-v3023-3/
      • 331 replies
    • Disney Magic Kingdoms Cheats v11.0.0 +1
      Modded/Hacked App: Disney Magic Kingdoms By Gameloft
      Bundle ID: com.gameloft.disneykingdom
      iTunes Store Link: https://apps.apple.com/us/app/disney-magic-kingdoms/id731592936?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Free Store ( not Free iAP )

       

      Non-Jailbroken Hack: https://iosgods.com/topic/184748-disney-magic-kingdoms-v1012-jailed-cheats-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/147877-disney-magic-kingdoms-cheats-v1020-1/
        • Informative
      • 398 replies
    • Hot Wheels Unlimited Modded v2025.3.1 +1
      Modded/Hacked App: Hot Wheels Unlimited By Budge Studios
      Bundle ID: com.budgestudios.HotWheelsUnlimited
      App Store Link: https://apps.apple.com/us/app/hot-wheels-unlimited/id1523486249?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - PREMIUM

       

      Non-Jailbroken Hack: https://iosgods.com/topic/135064-hot-wheels-unlimited-v202512-jailed-mod-1/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/135061-hot-wheels-unlimited-modded-v202512-1/
      • 71 replies
    • Hill Climb Racing 2 v1.69.2 Cheats +1
      Modded/Hacked App: Hill Climb Racing 2 By Fingersoft
      Bundle ID: com.fingersoft.hillclimbracing2
      iTunes Store Link: https://apps.apple.com/us/app/hill-climb-racing-2/id1146465836?uo=4


      Hack Features:
      - Freeze Coins
      - Freeze Gems
      - Freeze Scraps


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/108295-hill-climb-racing-2-v1611-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/108298-hill-climb-racing-2-v1612-cheats-3/
        • Agree
      • 2,203 replies
    • Harry Potter: Hogwarts Mystery v6.8.1 Jailed Cheats +7
      Modded/Hacked App: Harry Potter: Hogwarts Mystery By Jam City, Inc.
      Bundle ID: com.tinyco.potter
      App Store Link: https://apps.apple.com/us/app/harry-potter-hogwarts-mystery/id1333256716?uo=4

       


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Unlimited Energy
      - Max Attributes Level
      - Free Shop - Energy & Some Pets 
      - Max Creature Mastery Level
      - Unlimited Gems - Do Task And You'll Gain Gems
      - Feeding Button Enabled

      Coin & Gems Hack: https://iosgods.com/topic/96524-harry-potter-hogwarts-mystery-all-versions-coins-gems-hack/
      Jailbreak required hack: https://iosgods.com/topic/129908-harry-potter-hogwarts-mystery-v280-unlimited-energy-more


      iOS Hack Download Link: https://iosgods.com/topic/129953-harry-potter-hogwarts-mystery-v681-jailed-cheats-7/
        • Like
      • 622 replies
×
  • 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