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

    • [ Reinforced Wooden Stick Lv99 ] 99강화 나무몽둥이 : 키우기 Cheats v99.1.26 +2
      Modded/Hacked App: 99강화 나무몽둥이 : 키우기 By STUDIO LICO Corp.
      Bundle ID: com.studiolico.woodenstick
      iTunes Store Link: https://apps.apple.com/kr/app/99%EA%B0%95%ED%99%94-%EB%82%98%EB%AC%B4%EB%AA%BD%EB%91%A5%EC%9D%B4-%ED%82%A4%EC%9A%B0%EA%B8%B0/id6737379268?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
      - Multiply Attack

       

      Non-Jailbroken Hack: https://iosgods.com/topic/193094-reinforced-wooden-stick-lv99-99%EA%B0%95%ED%99%94-%EB%82%98%EB%AC%B4%EB%AA%BD%EB%91%A5%EC%9D%B4-%ED%82%A4%EC%9A%B0%EA%B8%B0-v9916-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/193095-reinforced-wooden-stick-lv99-99%EA%B0%95%ED%99%94-%EB%82%98%EB%AC%B4%EB%AA%BD%EB%91%A5%EC%9D%B4-%ED%82%A4%EC%9A%B0%EA%B8%B0-cheats-v9916-2/
      • 22 replies
    • Dummynation Cheats v3.4.2 +3
      Modded/Hacked App: Dummynation By ALEJANDRO HERNANDEZ FERRERO
      Bundle ID: ahf.dummynation
      iTunes Store Link: https://apps.apple.com/us/app/dummynation/id6444295551?uo=4

       

      📌 Mod Requirements

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

       

      🤩 Hack Features

      - Premium + No Ads
      - Infinite Research Point
      - Infinite Liquidity (Gold)


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/191828-dummynation-v313-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/191829-dummynation-cheats-v313-3/
      • 21 replies
    • Candy Critters: Idle Merge v1.3 +3++ Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Candy Critters: Idle Merge By PlaySide Studios PTY LTD
      Bundle ID: com.playsidestudios.candycritters
      App Store Link: https://apps.apple.com/us/app/candy-critters-idle-merge/id6480020380?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - All Cards Unlocked
      - No Card Upgrade Cost
      - Free In-App Purchases
      • 12 replies
    • Candy Critters: Idle Merge v1.3 +3++ Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Candy Critters: Idle Merge By PlaySide Studios PTY LTD
      Bundle ID: com.playsidestudios.candycritters
      App Store Link: https://apps.apple.com/us/app/candy-critters-idle-merge/id6480020380?uo=4

       


      🤩 Hack Features

      - Unlimited Currencies -> Will increase instead of decrease.
      - All Cards Unlocked
      - No Card Upgrade Cost
      - Free In-App Purchases
      • 11 replies
    • Big Helmets: Heroes of Destiny v1.0 +3 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Big Helmets: Heroes of Destiny By BoomBit, Inc.
      Bundle ID: com.bighelmets.destiny
      iTunes Store Link: https://apps.apple.com/pl/app/big-helmets-heroes-of-destiny/id6745514342

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 0 replies
    • Big Helmets: Heroes of Destiny v1.0 +3 Cheats [ Damage & Defence ]
      Modded/Hacked App: Big Helmets: Heroes of Destiny By BoomBit, Inc.
      Bundle ID: com.bighelmets.destiny
      iTunes Store Link: https://apps.apple.com/pl/app/big-helmets-heroes-of-destiny/id6745514342

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 1 reply
    • Earn to Die Rogue v1.16.194 +15 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Jailbreak required hack(s): [Mod Menu Hack] Earn to Die Rogue v1.00.96 +2 Cheats [ Unlimited Currencies ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 302 replies
    • Earn to Die Rogue v1.16.194 +15 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Earn to Die Rogue By Not Doppler Pty Limited
      Bundle ID: com.notdoppler.earntodierogue
      iTunes Store Link: https://apps.apple.com/us/app/earn-to-die-rogue/id1564024870?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Gold
      - Unlimited Skill Tree Tokens


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Earn to Die Rogue v1.00.96 +2 Jailed Cheats [ Unlimited Currencies ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 167 replies
    • The Battle Cats Cheats v14.6.0 +2
      Modded/Hacked App: The Battle Cats by ponos corporation
      Bundle ID: jp.co.ponos.battlecatsen
      iTunes Store Link: https://apps.apple.com/us/app/the-battle-cats/id850057092?uo=4&at=1010lce4


      Hack Features:
      - Infinite Cash
      - OHK Linked

      NOTE: Please don't ask me for currencies hack since this is the best I can do


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/124447-arm64-the-battle-cats-v940-jailed-cheats-2/


      iOS Hack Download Link: https://iosgods.com/topic/124448-arm64-the-battle-cats-cheats-v950-2/
      • 922 replies
    • Jetpack Joyride 2 Cheats v4.1.10 +1
      Modded/Hacked App: Jetpack Joyride 2 By Halfbrick
      Bundle ID: com.halfbrick.jetpackjoyride2
      iTunes Store Link: https://apps.apple.com/us/app/jetpack-joyride-2/id1598096399?uo=4


      Hack Features:
      - Infinite Currencies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/141408-jetpack-joyride-2-v0120-jailed-cheats-1/


      iOS Hack Download Link: https://iosgods.com/topic/141406-jetpack-joyride-2-cheats-all-versions-1/
      • 108 replies
    • Game Dev Tycoon Cheats v1.6.12 +1
      Modded/Hacked App: Game Dev Tycoon by Greenheart Games Pty. Ltd.
      Bundle ID: com.greenheartgames.gdtmobile
      iTunes Store Link: https://itunes.apple.com/us/app/game-dev-tycoon/id1162580001?mt=8&uo=4&at=1010lce4


      Hack Features:
      - Add Money Per Month
       

      Hack Download Link: https://iosgods.com/topic/83670-arm64-game-dev-tycoon-cheats-v124-1/
      • 163 replies
    • Toram Online v4.1.6 - [ Custom Move Speed & More ]
      Modded/Hacked App: Toram Online By ASOBIMO,Inc.
      Bundle ID: com.asobimo.toramonline
      iTunes Store Link: https://itunes.apple.com/us/app/toram-online/id988683886?mt=8&uo=4&at=1010lce4
       

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate or Substitute.
      - PreferenceLoader (from Cydia or Sileo).


      Hack Features:
      - Custom Move Speed
      - God Mode 
      - Fast Attack Speed
      - Fast Cast Speed
      - Always Critical Chance
      - Never Miss Hit 
      - Mobs/Bosses Can't Avoid & Guard 
      - Quick Draw
      - Armor Break
      - Magic Wall - Stun + Full Map Hack 
      • 2,617 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