Jump to content

Clang Theos Error iOS 11.2.6


The Epic Gamer

7 posts in this topic

Recommended Posts

Hello, I am experiencing problems with Theos, I have the iOS 10.2 SDK

Here is the error:                                                                                                                                                

iPad:/var/mobile/liquidtextpdf root# make package                                                                                            
> Making all for tweak LiquidTextPDF…                                                                                                        
make[2]: Nothing to be done for 'internal-library-compile'.                                                                                  
> Making all in LiquidTextPDFSettings…                                                                                                       
> Making all for bundle LiquidTextPDF…                                                                                                       
==> Copying resource directories into the bundle wrapper…                                                                                    
==> Linking bundle LiquidTextPDF (armv7)…                                                                                                    
ld: framework not found Preferences                                                                                                          
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          
make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 1                                                                                                                                           
==> Linking bundle LiquidTextPDF (arm64)…                                                                                                    
ld: framework not found Preferences                                                                                                          
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)                                                          
make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 1                                                                                                                                           
make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 2                                                                                                                                           
make[3]: *** Waiting for unfinished jobs....                                                                                                 
make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 2                                                                                                                                           
make[2]: *** [/var/theos/makefiles/instance/bundle.mk:26: internal-bundle-all_] Error 2                                                      
make[1]: *** [/var/theos/makefiles/master/rules.mk:123: LiquidTextPDF.all.bundle.variables] Error 2                                          
make: *** [/var/theos/makefiles/master/aggregate.mk:12: internal-all] Error 2                                                                

 

 

Tweak.xm:

@import Foundation;
@import UIKit;
#import <substrate.h>
#import "vm_writeData.h"

// To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/
// To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.liquidtextpdf.plist"

inline bool GetPrefBool(NSString *key) {
		return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}


// Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods.


%ctor {

	// Code Injection example
    if(GetPrefBool(@"key1")) {
      vm_writeData(0x123456, 0x123456); // 
    }

    if(GetPrefBool(@"key2")) {
      vm_writeData(0x10963C, 0xC0F8AC70); // 
    }

    if(GetPrefBool(@"key3")) {
      vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets
      vm_writeData(0x2FA51C, 0x381C); // 
      vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets
      vm_writeData(0x10038DD0C, 0x1F2003D5); // 
    }

}

%hook LTuserinfo
-(bool) hasProUpgrade {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook LTuserinfo
-(void) setHasProUpgrade:(bool)arg1 {
if(GetPrefBool(@"key1")) {
arg1 = TRUE;
}
%orig(arg1);
}
%end

%hook LTuserinfo
-(bool) inkStartedEnabled {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook LTuseinfo
-(bool) inkingEnabled {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook LTuserinfo
-(void) setInkingEnabled:(bool)arg1 {
if(GetPrefBool(@"key1")) {
arg1 = TRUE;
}
%orig(arg1);
}
%end

%hook LTuserinfo
-(void) setValidatedStudent:(bool)arg1 {
if(GetPrefBool(@"key1")) {
arg1 = TRUE;
}
%orig(arg1);
}
%end

%hook LTuserinfo
-(bool) multidocEnabled {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook LTuserinfo
-(bool) multiDocStartedEnabled {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook LTuserinfo
-(bool) proStartedEnabled {
if(GetPrefBool(@"key1")) {
return TRUE;
}
return %orig;
}
%end

%hook CLSAnalyticsMetadataController
+(bool) hostJailbroken {
if(GetPrefBool(@"key2")) {
return FALSE;
}
return %orig;
}
%end


// Automatic Popup Code
void setup() {
    UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Liquid Text PDF Reader Patcher by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert];


    UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
        UIApplication *application = [UIApplication sharedApplication];
        NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"];
        [application openURL:URL options:@{} completionHandler:^(BOOL success) {
            if (success) {
                //NSLog(@"Opened url");
            }
        }];
        
    }];
    
    UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
        UIApplication *application = [UIApplication sharedApplication];
        NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/clubs/"];
        [application openURL:URL options:@{} completionHandler:^(BOOL success) {
            if (success) {
                //NSLog(@"Opened url");
            }
        }];
    }];
    
    UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you ?" style:UIAlertActionStyleCancel handler:nil];
    
    [igcredits addAction:iosgods];
    [igcredits addAction:clubs];
    [igcredits addAction:thankyou];


    [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil];
}

void unsubscribeToLaunchEvent(void);

static void didFinishLaunching(CFNotificationCenterRef center, void *observer,
                               CFStringRef name, const void *object, CFDictionaryRef info) {
    setup();
    unsubscribeToLaunchEvent();
}

const char *authObserver = "authObserver";

void subscribeToLaunchEvent() {
    CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching,
                                    (CFStringRef)UIApplicationDidFinishLaunchingNotification,
                                    NULL, CFNotificationSuspensionBehaviorDrop);
}

void unsubscribeToLaunchEvent() {
    CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver,
                                       (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL);
}

__attribute__((constructor)) static void initialize() {
    subscribeToLaunchEvent();
}

 

Makefile:

ARCHS = armv7 arm64
TARGET = iphone:clang:latest:latest
#THEOS_PACKAGE_DIR_NAME = debs
PACKAGE_BUILDNAME = iOSGods.com
#DEBUG = 0
FINALPACKAGE = 1
FOR_RELEASE = 1
#GO_EASY_ON_ME = 1

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = LiquidTextPDF
LiquidTextPDF_FILES = Tweak.xm
LiquidTextPDF_FRAMEWORKS = UIKit
LiquidTextPDF_LDFLAGS += -Wl,-segalign,4000

include $(THEOS_MAKE_PATH)/tweak.mk


SUBPROJECTS += LiquidTextPDFSettings # To compile your project as a Tweak only, comment out or remove this line.
include $(THEOS_MAKE_PATH)/aggregate.mk

 

Link to comment
https://iosgods.com/topic/75445-clang-theos-error-ios-1126/
Share on other sites

You are missing all files in: SdkFolder/System/Libary/PrivateFrameworks

 

Use this SDK: https://www90.zippyshare.com/v/u7FJ5AKX/file.html

 

Or copy all files from the PrivateFrameworks into your current SDK.

Link to comment
https://iosgods.com/topic/75445-clang-theos-error-ios-1126/#findComment-2285555
Share on other sites

18 minutes ago, RudePerson said:

You are missing all files in: SdkFolder/System/Libary/PrivateFrameworks

 

Use this SDK: https://www90.zippyshare.com/v/u7FJ5AKX/file.html

 

Or copy all files from the PrivateFrameworks into your current SDK.

Now I get this error

find: ‘plutil’: Bad CPU type in executable    

Link to comment
https://iosgods.com/topic/75445-clang-theos-error-ios-1126/#findComment-2285588
Share on other sites

2 hours ago, RudePerson said:

Install plutil from this repo: repo.bingner.com

I installed it but now I still have the same first error, even though I used the sdk you sent me

Link to comment
https://iosgods.com/topic/75445-clang-theos-error-ios-1126/#findComment-2285913
Share on other sites

6 hours ago, The Epic Gamer said:

I installed it but now I still have the same first error, even though I used the sdk you sent me

You haven't extracted it correctly then

Link to comment
https://iosgods.com/topic/75445-clang-theos-error-ios-1126/#findComment-2286807
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Our picks

    • Cowboy Valley v0.25.0 +6 Jailed Cheats [Currency Hack]
      Modded/Hacked App: Cowboy Valley By Pantelis Ioannou
      Bundle ID: com.pantelisdev.cowboy
      iTunes Store Link: https://apps.apple.com/us/app/cowboy-valley/id6447061923?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:
      - God Mode
      - Unlimited Currency
      - Super Speed
      - Fast Fire Rate
      - No Stamina Cooldown
      - No Cattle Leaves Range


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 17 replies
    • Cowboy Valley v0.25.0 +6 [Currency Hack]
      Modded/Hacked App: Cowboy Valley By Pantelis Ioannou
      Bundle ID: com.pantelisdev.cowboy
      iTunes Store Link: https://apps.apple.com/us/app/cowboy-valley/id6447061923?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - God Mode
      - Unlimited Currency
      - Super Speed
      - Fast Fire Rate
      - No Stamina Cooldown
      - No Cattle Leaves Range


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Agree
        • Haha
        • Thanks
        • Like
      • 22 replies
    • Pocket Land! v0.110.0 +3 [Currency Hack]
      Modded/Hacked App: Pocket Land! By GRAND-ATTIC LIMITED
      Bundle ID: gs.hadi.pocketisland
      iTunes Store Link: https://apps.apple.com/us/app/pocket-land/id6446137216?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Freeze Currency
      - Freeze Resources
      - Upgrade without Resources (Dont Abuse)


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 34 replies
    • Gladiator Heroes Arena Legends v3.07.40 +3 Jailed Cheats
      Modded/Hacked App: Gladiator Heroes Arena Legends By VIVA GAMES S.L.
      Bundle ID: com.generagames.gladiatorheroes
      iTunes Store Link: https://apps.apple.com/us/app/gladiator-heroes-arena-legends/id1061896024?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:
      - Damage Multiplier
      - Defense Multiplier
      - Sell Gladiators To Get Gems


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 24 replies
    • Rush! Knights : Idle RPG v1.2.67 +3 Jailed Cheats
      Modded/Hacked App: Rush! Knights : Idle RPG By Springcomes Co., Ltd.
      Bundle ID: com.gaimstudio.knightage
      iTunes Store Link: https://apps.apple.com/us/app/rush-knights-idle-rpg/id6477564391?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:
      - Damage Multiplier
      - Never Die
      - Gems Multiplier


      Jailbreak required hack(s): 


      iOS Hack Download IPA Link:

      Hidden Content

      Download via the iOSGods App








      PC Installation Instructions:
      STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress.
      STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic.
      STEP 3: Download Sideloadly and install it on your PC.
      STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up.
      STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application.
      STEP 6: You will now have to enter your iTunes/Apple ID email login, press "Start" & then you will be asked to enter your password. Go ahead and enter the required information.
      STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust [email protected]'.
      STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game.

      NOTE: iOS/iPadOS 16 and later, you must enable Developer Mode. For free Apple Developer accounts, you will need to repeat this process every 7 days. Jailbroken iDevices can also use Sideloadly/Filza/IPA Installer to normally install the IPA with AppSync. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please 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:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 103 replies
    • Rush! Knights : Idle RPG v1.2.67 +3 Cheats
      Modded/Hacked App: Rush! Knights : Idle RPG By Springcomes Co., Ltd.
      Bundle ID: com.gaimstudio.knightage
      iTunes Store Link: https://apps.apple.com/us/app/rush-knights-idle-rpg/id6477564391?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Damage Multiplier
      - Never Die
      - Gems Multiplier


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content

      Download Hack








      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 116 replies
    • Pocket Land! v0.110.0 +3 Jailed Cheats [Currency Hack]
      Modded/Hacked App: Pocket Land! By GRAND-ATTIC LIMITED
      Bundle ID: gs.hadi.pocketisland
      iTunes Store Link: https://apps.apple.com/us/app/pocket-land/id6446137216?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:
      - Freeze Currency
      - Freeze Resources


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 70 replies
    • Gladiator Heroes Arena Legends v3.07.40 +3 Cheats
      Modded/Hacked App: Gladiator Heroes - Battle Game By VIVA GAMES S.L.
      Bundle ID: com.generagames.gladiatorheroes
      iTunes Store Link: https://apps.apple.com/us/app/gladiator-heroes-battle-game/id1061896024?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - x Dmg
      - x Def
      - Sell Gladiators To Get Gems


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 190 replies
    • Hole.io v2.21.8 [OVERPOWERED Debugger]
      Modded/Hacked App: Hole.io By Voodoo
      Bundle ID: com.nguyenvh.holeio
      iTunes Store Link: https://apps.apple.com/us/app/hole-io/id1389111413?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:

      Overpowered Debug Menu with Cheat Panel + more




      Click "Show Debug Button" in Mod Menu. Once enabled once you can delete the deb and the TestKit will still show up as this hack adds your DeviceUID to the Test Devices list. No need to open IGM when enabled once!






      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 151 replies
    • Stick War 3 v2025.4.287 +8 OP Jailed Cheats
      Modded/Hacked App: Stick War 3 By 1004319 Alberta Ltd
      Bundle ID: com.maxgames.stickwar3
      iTunes Store Link: https://apps.apple.com/ca/app/stick-war-3/id1548764863?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:
      - Anti Cheat Bypassed
      - Infinite Gold
      - Infinite Mana
      - Infinite Team Members
      - No Spawn Unit Cooldown
      - No Spell Cooldown
      - Everything Owned


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 79 replies
    • Stick War 3 v2025.4.287 +8 OP Cheats
      Modded/Hacked App: Stick War 3 By 1004319 Alberta Ltd
      Bundle ID: com.maxgames.stickwar3
      iTunes Store Link: https://apps.apple.com/ca/app/stick-war-3/id1548764863?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - Anti Cheat Bypassed
      - Infinite Gold
      - Infinite Mana
      - Infinite Team Members
      - Collect High Gold
      - No Spawn Unit Cooldown
      - No Spell Cooldown
      - Everything Owned


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 67 replies
    • Hole.io v2.21.8 [OVERPOWERED Debugger]
      Modded/Hacked App: Hole.io By Voodoo
      Bundle ID: com.nguyenvh.holeio
      iTunes Store Link: https://apps.apple.com/us/app/hole-io/id1389111413?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:

      Overpowered Debug Menu with Cheat Panel + more




      Click Settings then Privacy Policy button. Once enabled your DeviceUID will be added to the testkit and you will not have to click anything to enable! You can close the app and it will auto load till you delete the app.






      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 138 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