Jump to content

Strange Errors (On-Device Theos Install)


Go to solution Solved by Rook,

28 posts in this topic

Recommended Posts

Posted (edited)

I've got everything setup in Theos including the SDK directory, build tools, and required files, but when I run 

make package messages=yes

I get the following errors:

Zanes-iPhone:/User/Documents/iOSTweaks/tes root# make package messages=yes
Making all for tweak tes...
make -f Makefile --no-print-directory --no-keep-going \
		internal-library-compile \
		_THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=tes _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/User/Documents/iOSTweaks/tes/Packages" _THEOS_MAKE_PARALLEL=yes
/User/Documents/iOSTweaks/tes/theos/bin/logos.pl -c warnings=error    tes.x > /User/Documents/iOSTweaks/tes/Packages/obj/tes.x.m
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.
clang++ -x objective-c -c -I"/User/Documents/iOSTweaks/tes" -DTARGET_IPHONE=1 -O2 -I/User/Documents/iOSTweaks/tes/theos/include -include /User/Documents/iOSTweaks/tes/theos/Prefix.pch -Wall -Werror  -isysroot "/User/Documents/iOSTweaks/tes/theos/sdks/iPhoneOS8.1.sdk" -arch armv7 -arch armv7s -arch arm64 -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_8_0 -miphoneos-version-min=8.0  -fobjc-arc       -std=c99 -include "logos/logos.h" /User/Documents/iOSTweaks/tes/Packages/obj/tes.x.m -o /User/Documents/iOSTweaks/tes/Packages/obj/tes.x.93f05f21.o
make[2]: *** [/User/Documents/iOSTweaks/tes/Packages/obj/tes.x.93f05f21.o] Killed: 9
make[1]: *** [internal-library-all_] Error 2
make: *** [tes.all.tweak.variables] Error 2
Zanes-iPhone:/User/Documents/iOSTweaks/tes root# 

I don't know if it makes a difference, but I'm using the CoolStar fork of Theos that's supposedly compatible for ARM64 devices.

Is anyone able to shine some light on how to fix this?

Updated by _Bool
  • Replies 27
  • Created
  • Last Reply

Top Posters In This Topic

Posted (edited)

I'm guessing you're on iOS 9?

 

You would be correct.

I have (almost) the same setup on my Mac, but I'm on a road trip and being able to SSH into my phone from my Linux machine would be incredible!

Updated by _Bool
Posted (edited)

The killed: 9 error is usually fixed by signing the executables.

 

http://iosgods.com/topic/19478-how-to-fix-theos-on-ios-9-3264bit/

 

I've been instructed to use ldid for signing executables ever since the release of iOS 9, and every time it has returned an error so I thought there was no way it would change, but to my surprise ldid worked on all of those binaries. Now when I run

make package messages=yes

I get:

Zanes-iPhone:/User/Documents/iOSTweaks/tes root# make package messages=yes
Making all for tweak tes...
make -f Makefile --no-print-directory --no-keep-going \
		internal-library-compile \
		_THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=tes _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/User/Documents/iOSTweaks/tes/Packages" _THEOS_MAKE_PARALLEL=yes
clang++ -L/User/Documents/iOSTweaks/tes/theos/lib -lobjc -framework Foundation -framework CoreFoundation  -framework Foundation     -lsubstrate -dynamiclib -install_name "/Library/MobileSubstrate/DynamicLibraries/tes.dylib"  -isysroot "/User/Documents/iOSTweaks/tes/theos/sdks/iPhoneOS8.1.sdk" -arch armv7 -arch armv7s -arch arm64 -D__IPHONE_OS_VERSION_MIN_REQUIRED=__IPHONE_8_1 -miphoneos-version-min=8.1 -multiply_defined suppress   -o "/User/Documents/iOSTweaks/tes/Packages/obj/tes.dylib.64873355.unsigned" /User/Documents/iOSTweaks/tes/Packages/obj/tes.x.940a2e73.o
ld: library not found for -lobjc
clang++: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [/User/Documents/iOSTweaks/tes/Packages/obj/tes.dylib.64873355.unsigned] Error 1
make[1]: *** [internal-library-all_] Error 2
make: *** [tes.all.tweak.variables] Error 2 

Which is a compiler error to my understanding.

Updated by _Bool
Posted

What's in your makefile?

ARCHS = armv7 armv7s arm64

TARGET = iphone:clang:latest:latest

THEOS_BUILD_DIR = Packages

include theos/makefiles/common.mk

TWEAK_NAME = tes
tes_CFLAGS = -fobjc-arc
tes_FILES = tes.x
tes_FRAMEWORKS = Foundation

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
	install.exec "killall -9 backboardd"
Posted

The issue is this:

 

ld: library not found for -lobjc

Posted (edited)

The issue is this:

 

ld: library not found for -lobjc

 

I saw, but I don't know what this means, nor can I find any relevant information through Google.

 

I totally forgot that Google omits search results containing text after a `-` character which resulted in everything except what I wanted (how ironic). I've found that it has something to do with a missing library (libobjc.A.dylib hopefully) so if I find a copy of that and copy it to /usr/lib I should be good...right?

 

I got a copy of libobjc.A.dylib in my /usr/lib directory and the error has remained the same, I've run out of ideas.

Updated by _Bool
Posted

I saw, but I don't know what this means, nor can I find any relevant information through Google.

 

I totally forgot that Google omits search results containing text after a `-` character which resulted in everything except what I wanted (how ironic). I've found that it has something to do with a missing library (libobjc.A.dylib hopefully) so if I find a copy of that and copy it to /usr/lib I should be good...right?

 

I got a copy of libobjc.A.dylib in my /usr/lib directory and the error has remained the same, I've run out of ideas.

Do you need this Framework?

 

tes_FRAMEWORKS = Foundation

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

    • Rot N Roll - Survive the Night v0.7.4 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Rot N Roll - Survive the Night By Alpaka Games Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.leventtest.rotntoll
      App Store Link: https://apps.apple.com/us/app/rot-n-roll-survive-the-night/id6739062577?uo=4
       

      🤩 Hack Features

      - Gems [ Earn Then Get ]
      - Gold [ Earn Then Get ]
      - DMG 1 [ Just UP Gun ]
      - DMG 2 [ Befor Battle ON ]
        • Agree
        • Winner
        • Like
      • 3 replies
    • Rot N Roll - Survive the Night v0.7.4 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Rot N Roll - Survive the Night By Alpaka Games Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.leventtest.rotntoll
      App Store Link: https://apps.apple.com/us/app/rot-n-roll-survive-the-night/id6739062577?uo=4


      🤩 Hack Features

      - Gems [ Earn Then Get ]
      - Gold [ Earn Then Get ]
      - DMG 1 [ Just UP Gun ]
      - DMG 2 [ Befor Battle ON ]
        • Informative
        • Like
      • 4 replies
    • ONE PIECE トレジャークルーズ v15.1.0 +5 Jailed Cheats
      Modded/Hacked App: ONE PIECE トレジャークルーズ By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcogames.NBGI0199
      iTunes Store Link: https://apps.apple.com/jp/app/one-piece-%E3%83%88%E3%83%AC%E3%82%B8%E3%83%A3%E3%83%BC%E3%82%AF%E3%83%AB%E3%83%BC%E3%82%BA/id824116884?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:
      - One Hit Kill
      - Never Die
      - Character Box 
      - Auto Win
      - Skill Turn


      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
        • Winner
        • Like
      • 29 replies
    • ONE PIECE トレジャークルーズ v15.1.0 +5 Cheats
      Modded/Hacked App: ONE PIECE トレジャークルーズ By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcogames.NBGI0199
      iTunes Store Link: https://apps.apple.com/jp/app/one-piece-%E3%83%88%E3%83%AC%E3%82%B8%E3%83%A3%E3%83%BC%E3%82%AF%E3%83%AB%E3%83%BC%E3%82%BA/id824116884?uo=4


      Hack Features:
      - Go over Character Box Capacity
      - Auto Win
      - God Mode
      - Skill Available after 1 Turn
      - High Damage Hits
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 90 replies
    • Kingdom Story: Brave Legion v4.6.0 +2 Cheats
      Modded/Hacked App: Kingdom Story: Brave Legion By Softnyx, Inc.
      Bundle ID: com.nhnent.SK10392
      iTunes Store Link: https://apps.apple.com/us/app/kingdom-story-brave-legion/id1159292704?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:
      - Damage Multiplier
      - Defense Multiplier
      - Jailbreak Check Removed


      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
      • 162 replies
    • ONE PIECE トレジャークルーズ v15.1.0 +2 Cheats
      Modded/Hacked App: ONE PIECE トレジャークルーズ By BANDAI NAMCO Entertainment Inc.
      Bundle ID: jp.co.bandainamcogames.NBGI0199
      iTunes Store Link: https://apps.apple.com/jp/app/one-piece-%E3%83%88%E3%83%AC%E3%82%B8%E3%83%A3%E3%83%BC%E3%82%AF%E3%83%AB%E3%83%BC%E3%82%BA/id824116884


      Hack Features:
      - God Mode 
      - Skill Available after 1 Turn
      - High Damage Hits
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 700 replies
    • ONE PIECE TREASURE CRUISE v15.1.0 +5 Jailed Cheats
      Modded/Hacked App: ONE PIECE TREASURE CRUISE By Bandai Namco Entertainment Inc.
      Bundle ID: jp.co.bandainamcogames.BNGI0218
      iTunes Store Link: https://apps.apple.com/us/app/one-piece-treasure-cruise/id943690848?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:
      - One Hit Kill
      - Never Die
      - Character Box 
      - Auto Win
      - Skill Turn


      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
      • 122 replies
    • ONE PIECE TREASURE CRUISE v15.1.0 +5 Cheats
      App Name: ONE PIECE TREASURE CRUISE By Bandai Namco Entertainment Inc. v12.1.2
      Bundle ID: jp.co.bandainamcogames.BNGI0218
      Requires: iOS 10.0 or later.
      Price: Free
      iTunes URL: https://apps.apple.com/us/app/one-piece-treasure-cruise/id943690848

      Hack Features:

      - Auto Win

      - God Mode

      - Skill Available after 1 Turn

      - High Damage Hits

      - Go over Character Box Capacity
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 301 replies
    • ONE PIECE TREASURE CRUISE-RPG v15.1.0 +2 Cheats
      Modded/Hacked App: ONE PIECE TREASURE CRUISE By BANDAI NAMCO Entertainment Inc.
      Bundle ID: jp.co.bandainamcogames.BNGI0218
      iTunes Store Link: https://apps.apple.com/us/app/one-piece-treasure-cruise/id943690848

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


      Hack Features:
      - one hit kill
      - god mode




      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.
      STEP 2: Copy the file over 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 Filza or iFile, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will need to press on 'Install' or 'Installer' from the options on your screen.
      STEP 5: Let Filza / iFile finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: 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 7: 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, 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
      • 693 replies
    • Spin Squad! v1.6.4 [ +2 Cheats ] Battle Coins
      Modded/Hacked App: Lucky Offense By Crater Co., Ltd.
      Bundle ID: com.percent.ios.luckyrolling
      iTunes Store Link: https://apps.apple.com/us/app/lucky-offense/id6511224968?uo=4


      🤩 Hack Features

      - Battle Coins
      - ATK
      - ATK Range
      - ATK Speed

      ATK Linked Enemy
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 91 replies
    • Merge Gardens v1.41.1 +1 Jailed Cheat
      Modded/Hacked App: Merge Gardens By Futureplay Oy
      Bundle ID: com.futureplay.mergematch
      iTunes Store Link: https://apps.apple.com/us/app/merge-gardens/id1464675244?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 Currencies


      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
      • 67 replies
    • Limbus Company v1.83.2 +3 Jailed Cheat
      Modded/Hacked App: Limbus Company By Project Moon Co., Ltd.
      Bundle ID: com.ProjectMoon.LimbusCompany
      iTunes Store Link: https://apps.apple.com/us/app/limbus-company/id6444112366?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:
      - Auto Win


      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
      • 229 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