Jump to content

make[2]: Nothing to be done for `internal-library-compile'. make[3]: Nothing to be done for `internal-bundle-compile'.


Go to solution Solved by Rook,

15 posts in this topic

Recommended Posts

Posted

when I compile my tweak. I get this

iPad:/var/mobile/stickwars root# make package install
/var/mobile/stickwars/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.
/var/mobile/stickwars/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak stickwars...
make[2]: Nothing to be done for `internal-library-compile'.
Making all in stickwars...
Making all for bundle stickwars...
 Copying resource directories into the bundle wrapper...
make[3]: Nothing to be done for `internal-bundle-compile'.
Making stage for tweak stickwars...
Making stage in stickwars...
Making stage for bundle stickwars...
make: *** [internal-package] Error 2
 
what does it mean and how to fix it?
I'm using theos on my iPad.
 
Posted

Type in:

 

make package messages=yes
And post the result.
Posted


iPad:/var/mobile/stickwars root# make package messages=yes

/var/mobile/stickwars/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.

/var/mobile/stickwars/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.

Making all for tweak stickwars...

make -f Makefile --no-print-directory --no-keep-going \

internal-library-compile \

_THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=stickwars _THEOS_CURRENT_OPERATION=compile \

THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes

make[2]: Nothing to be done for `internal-library-compile'.

Making all in stickwars...

make[1]: Entering directory `/private/var/mobile/stickwars/stickwars'

Making all for bundle stickwars...

mkdir -p "obj/stickwars.bundle/"

mkdir -p "obj/stickwars.bundle/"

mkdir -p "obj/stickwars.bundle/"

for d in Resources; do \

if [ -d "$d" ]; then \

rsync -a "$d/" "./obj/stickwars.bundle/" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*"; \

else \

echo "Warning: ignoring missing bundle resource directory $d."; \

fi; \

done

make -f Makefile --no-print-directory --no-keep-going \

internal-bundle-compile \

_THEOS_CURRENT_TYPE=bundle THEOS_CURRENT_INSTANCE=stickwars _THEOS_CURRENT_OPERATION=compile \

THEOS_BUILD_DIR="." _THEOS_MAKE_PARALLEL=yes

make[3]: Nothing to be done for `internal-bundle-compile'.

make[1]: Leaving directory `/private/var/mobile/stickwars/stickwars'

rm -rf "/private/var/mobile/stickwars/_"

/var/mobile/stickwars/theos/bin/fakeroot.sh -p "/private/var/mobile/stickwars/.theos/fakeroot" -c

mkdir -p "/private/var/mobile/stickwars/_"

[ -d layout ] && rsync -a "layout/" "/private/var/mobile/stickwars/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true

Making stage for tweak stickwars...

mkdir -p "/private/var/mobile/stickwars/_/Library/MobileSubstrate/DynamicLibraries/"

cp ./obj/stickwars.dylib "/private/var/mobile/stickwars/_/Library/MobileSubstrate/DynamicLibraries/"

if [ -f stickwars.plist ]; then cp stickwars.plist "/private/var/mobile/stickwars/_/Library/MobileSubstrate/DynamicLibraries/"; fi

Making stage in stickwars...

make[1]: Entering directory `/private/var/mobile/stickwars/stickwars'

[ -d layout ] && rsync -a "layout/" "/private/var/mobile/stickwars/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true

Making stage for bundle stickwars...

mkdir -p "/private/var/mobile/stickwars/_/Library/PreferenceBundles/stickwars.bundle"

rsync -a "./obj/stickwars.bundle/" "/private/var/mobile/stickwars/_/Library/PreferenceBundles/stickwars.bundle"

mkdir -p /private/var/mobile/stickwars/_/Library/PreferenceLoader/Preferences

cp entry.plist /private/var/mobile/stickwars/_/Library/PreferenceLoader/Preferences/stickwars.plist

make[1]: Leaving directory `/private/var/mobile/stickwars/stickwars'

mkdir -p "/private/var/mobile/stickwars/_/DEBIAN"

sed -e '/^[Vv]ersion:/d' "/private/var/mobile/stickwars/control" > "/private/var/mobile/stickwars/_/DEBIAN/control"

echo "Version: 1.0.0-4" >> "/private/var/mobile/stickwars/_/DEBIAN/control"

echo "Installed-Size: 184" >> "/private/var/mobile/stickwars/_/DEBIAN/control"

COPYFILE_DISABLE=1 /var/mobile/stickwars/theos/bin/fakeroot.sh -p "/private/var/mobile/stickwars/.theos/fakeroot" -r dpkg-deb -b "/private/var/mobile/stickwars/_" "./god.yongy.stickwars_1.0.0-4_iphoneos-arm.deb"

dpkg-deb: parse error, in file `/private/var/mobile/stickwars/_/DEBIAN/control' near line 10 package `god.yongy.stickwars':

missing version

make: *** [internal-package] Error 2

 

Posted

Check your control file, the version row.

 

Is everything okay there?

 

Also make sure a row is empty after the last one. I've seen it causes issues.

Posted

Package: god.yongy.stickwars

Name: stickwars
Depends: mobilesubstrate
Version: 1.0.0
Architecture: iphoneos-arm
Description: An awesome MobileSubstrate tweak!
Maintainer: Yongy
Author: Yongy
Section: Tweaks
  • Solution
Posted
  On 4/7/2015 at 11:30 AM, Yongy said:

Package: god.yongy.stickwars

Name: stickwars

Depends: mobilesubstrate

Version: 1.0.0

Architecture: iphoneos-arm

Description: An awesome MobileSubstrate tweak!

Maintainer: Yongy

Author: Yongy

Section: Tweaks

Use this:

 

Package: god.yongy.stickwars
Name: stickwars
Depends: mobilesubstrate
Version: 1.0.0
Architecture: iphoneos-arm
Description: An awesome MobileSubstrate tweak!
Maintainer: Yongy
Author: Yongy
Section: Tweaks
Including the empty space at the bottom.
Posted
  On 4/7/2015 at 11:44 AM, Yongy said:

working now. thanks very much DiDA

You're welcome. :)

 

Mark an answer as solved.

Posted

Hi guys! I have slightly similar situation, I don't have errors, have warnings that I can't fix.  When I compile, I get this warnings. I didn't understand what I have to do with control file to fix it. Please, help me!!!

iPad-MerdanK:/var/mobile/Tweaks/linedr root# make package
Making all for tweak LineDR...
make[2]: Nothing to be done for `internal-library-compile'.
Making all in prefs...
Making all for bundle prefs...
 Copying resource directories into the bundle wrapper...
make[3]: Nothing to be done for `internal-bundle-compile'.
Making stage for tweak LineDR...
Making stage in prefs...
Making stage for bundle prefs...
dpkg-deb: building package `com.merdank.linedr' in `Packages/com.merdank.linedr_0.0.1-8_iphoneos-arm.deb'.
iPad-MerdanK:/var/mobile/Tweaks/linedr root# make package messages=yes
Making all for tweak LineDR...
make -f Makefile --no-print-directory --no-keep-going \
		internal-library-compile \
		_THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=LineDR _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/var/mobile/Tweaks/linedr/Packages" _THEOS_MAKE_PARALLEL=yes
make[2]: Nothing to be done for `internal-library-compile'.
Making all in prefs...
make[1]: Entering directory `/private/var/mobile/Tweaks/linedr/prefs'
Making all for bundle prefs...
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
for d in Resources; do \
		if [ -d "$d" ]; then \
			rsync -a "$d/" "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*"; \
		else \
			echo "Warning: ignoring missing bundle resource directory $d."; \
		fi; \
	done
make -f Makefile --no-print-directory --no-keep-going \
		internal-bundle-compile \
		_THEOS_CURRENT_TYPE=bundle THEOS_CURRENT_INSTANCE=prefs _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/var/mobile/Tweaks/linedr/Packages/prefs" _THEOS_MAKE_PARALLEL=yes
make[3]: Nothing to be done for `internal-bundle-compile'.
make[1]: Leaving directory `/private/var/mobile/Tweaks/linedr/prefs'
rm -rf "/private/var/mobile/Tweaks/linedr/_"
/var/mobile/Tweaks/linedr/theos/bin/fakeroot.sh -p "/private/var/mobile/Tweaks/linedr/.theos/fakeroot" -c
mkdir -p "/private/var/mobile/Tweaks/linedr/_"
[ -d layout ] && rsync -a "layout/" "/private/var/mobile/Tweaks/linedr/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true
Making stage for tweak LineDR...
mkdir -p "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"
cp /var/mobile/Tweaks/linedr/Packages/obj/LineDR.dylib "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"
if [ -f LineDR.plist ]; then cp LineDR.plist "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"; fi
Making stage in prefs...
make[1]: Entering directory `/private/var/mobile/Tweaks/linedr/prefs'
[ -d layout ] && rsync -a "layout/" "/private/var/mobile/Tweaks/linedr/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true
Making stage for bundle prefs...
mkdir -p "/private/var/mobile/Tweaks/linedr/_/Library/PreferenceBundles/prefs.bundle"
rsync -a "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/" "/private/var/mobile/Tweaks/linedr/_/Library/PreferenceBundles/prefs.bundle"
mkdir -p /private/var/mobile/Tweaks/linedr/_/Library/PreferenceLoader/Preferences
cp entry.plist /private/var/mobile/Tweaks/linedr/_/Library/PreferenceLoader/Preferences/prefs.plist
make[1]: Leaving directory `/private/var/mobile/Tweaks/linedr/prefs'
mkdir -p "/private/var/mobile/Tweaks/linedr/_/DEBIAN"
sed -e '/^[Vv]ersion:/d' "/private/var/mobile/Tweaks/linedr/control" > "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
echo "Version: 0.0.1-9" >> "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
echo "Installed-Size: 152" >> "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
COPYFILE_DISABLE=1 /var/mobile/Tweaks/linedr/theos/bin/fakeroot.sh -p "/private/var/mobile/Tweaks/linedr/.theos/fakeroot" -r dpkg-deb -b "/private/var/mobile/Tweaks/linedr/_" "Packages/com.merdank.linedr_0.0.1-9_iphoneos-arm.deb" 
warning, `/private/var/mobile/Tweaks/linedr/_/DEBIAN/control' contains user-defined field `Name'
warning, `/private/var/mobile/Tweaks/linedr/_/DEBIAN/control' contains user-defined field `Author'
dpkg-deb: building package `com.merdank.linedr' in `Packages/com.merdank.linedr_0.0.1-9_iphoneos-arm.deb'.
dpkg-deb: ignoring 2 warnings about the control file(s)
Posted
  On 7/3/2015 at 3:15 PM, MerdanK said:

 

Hi guys! I have slightly similar situation, I don't have errors, have warnings that I can't fix. When I compile, I get this warnings. I didn't understand what I have to do with control file to fix it. Please, help me!!!

iPad-MerdanK:/var/mobile/Tweaks/linedr root# make package
Making all for tweak LineDR...
make[2]: Nothing to be done for `internal-library-compile'.
Making all in prefs...
Making all for bundle prefs...
 Copying resource directories into the bundle wrapper...
make[3]: Nothing to be done for `internal-bundle-compile'.
Making stage for tweak LineDR...
Making stage in prefs...
Making stage for bundle prefs...
dpkg-deb: building package `com.merdank.linedr' in `Packages/com.merdank.linedr_0.0.1-8_iphoneos-arm.deb'.
iPad-MerdanK:/var/mobile/Tweaks/linedr root# make package messages=yes
Making all for tweak LineDR...
make -f Makefile --no-print-directory --no-keep-going \
		internal-library-compile \
		_THEOS_CURRENT_TYPE=tweak THEOS_CURRENT_INSTANCE=LineDR _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/var/mobile/Tweaks/linedr/Packages" _THEOS_MAKE_PARALLEL=yes
make[2]: Nothing to be done for `internal-library-compile'.
Making all in prefs...
make[1]: Entering directory `/private/var/mobile/Tweaks/linedr/prefs'
Making all for bundle prefs...
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
mkdir -p "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/"
for d in Resources; do \
		if [ -d "$d" ]; then \
			rsync -a "$d/" "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*"; \
		else \
			echo "Warning: ignoring missing bundle resource directory $d."; \
		fi; \
	done
make -f Makefile --no-print-directory --no-keep-going \
		internal-bundle-compile \
		_THEOS_CURRENT_TYPE=bundle THEOS_CURRENT_INSTANCE=prefs _THEOS_CURRENT_OPERATION=compile \
		THEOS_BUILD_DIR="/var/mobile/Tweaks/linedr/Packages/prefs" _THEOS_MAKE_PARALLEL=yes
make[3]: Nothing to be done for `internal-bundle-compile'.
make[1]: Leaving directory `/private/var/mobile/Tweaks/linedr/prefs'
rm -rf "/private/var/mobile/Tweaks/linedr/_"
/var/mobile/Tweaks/linedr/theos/bin/fakeroot.sh -p "/private/var/mobile/Tweaks/linedr/.theos/fakeroot" -c
mkdir -p "/private/var/mobile/Tweaks/linedr/_"
[ -d layout ] && rsync -a "layout/" "/private/var/mobile/Tweaks/linedr/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true
Making stage for tweak LineDR...
mkdir -p "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"
cp /var/mobile/Tweaks/linedr/Packages/obj/LineDR.dylib "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"
if [ -f LineDR.plist ]; then cp LineDR.plist "/private/var/mobile/Tweaks/linedr/_/Library/MobileSubstrate/DynamicLibraries/"; fi
Making stage in prefs...
make[1]: Entering directory `/private/var/mobile/Tweaks/linedr/prefs'
[ -d layout ] && rsync -a "layout/" "/private/var/mobile/Tweaks/linedr/_" --exclude "DEBIAN" --exclude "_MTN" --exclude ".git" --exclude ".svn" --exclude ".DS_Store" --exclude "._*" || true
Making stage for bundle prefs...
mkdir -p "/private/var/mobile/Tweaks/linedr/_/Library/PreferenceBundles/prefs.bundle"
rsync -a "/var/mobile/Tweaks/linedr/Packages/prefs/obj/prefs.bundle/" "/private/var/mobile/Tweaks/linedr/_/Library/PreferenceBundles/prefs.bundle"
mkdir -p /private/var/mobile/Tweaks/linedr/_/Library/PreferenceLoader/Preferences
cp entry.plist /private/var/mobile/Tweaks/linedr/_/Library/PreferenceLoader/Preferences/prefs.plist
make[1]: Leaving directory `/private/var/mobile/Tweaks/linedr/prefs'
mkdir -p "/private/var/mobile/Tweaks/linedr/_/DEBIAN"
sed -e '/^[Vv]ersion:/d' "/private/var/mobile/Tweaks/linedr/control" > "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
echo "Version: 0.0.1-9" >> "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
echo "Installed-Size: 152" >> "/private/var/mobile/Tweaks/linedr/_/DEBIAN/control"
COPYFILE_DISABLE=1 /var/mobile/Tweaks/linedr/theos/bin/fakeroot.sh -p "/private/var/mobile/Tweaks/linedr/.theos/fakeroot" -r dpkg-deb -b "/private/var/mobile/Tweaks/linedr/_" "Packages/com.merdank.linedr_0.0.1-9_iphoneos-arm.deb" 
warning, `/private/var/mobile/Tweaks/linedr/_/DEBIAN/control' contains user-defined field `Name'
warning, `/private/var/mobile/Tweaks/linedr/_/DEBIAN/control' contains user-defined field `Author'
dpkg-deb: building package `com.merdank.linedr' in `Packages/com.merdank.linedr_0.0.1-9_iphoneos-arm.deb'.
dpkg-deb: ignoring 2 warnings about the control file(s)

The .deb is built though, right?

 

There's no errors, just a warning telling you that the Control file already has pre-defined fields.

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

    • (Subway Surfers China) 地铁跑酷 - 悟空直面天命 v6.03.0 +3 Jailed Cheats
      Modded/Hacked App: 地铁跑酷 - 悟空直面天命 By DREAMSKY Technology Limited
      Bundle ID: com.kiloo.subwaysurf.cn
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%9C%B0%E9%93%81%E8%B7%91%E9%85%B7-%E6%82%9F%E7%A9%BA%E7%9B%B4%E9%9D%A2%E5%A4%A9%E5%91%BD/id995122577?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:
      - All Hoverboards Unlocked
      - Double Score Enabled
      - Double Coins Enabled


      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@iosgods.com'.
      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
      • 66 replies
    • (Archero China) 弓箭传说 v2.10.0 +4 Jailed Cheats
      Modded/Hacked App: 弓箭传说 By Shanghai Lezuan Technology Co.,Ltd.
      Bundle ID: com.habby.gongjian
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%BC%93%E7%AE%AD%E4%BC%A0%E8%AF%B4/id1670099181?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
      - Enemies Don't Move
      - Enemies Don't Attack


      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@iosgods.com'.
      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
      • 102 replies
    • (Archero China) 弓箭传说 v2.10.0 +4 Cheats
      Modded/Hacked App: 弓箭传说 By Shanghai Lezuan Technology Co.,Ltd.
      Bundle ID: com.habby.gongjian
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%BC%93%E7%AE%AD%E4%BC%A0%E8%AF%B4/id1670099181?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:
      - One Hit Kill
      - God Mode
      - Exp Multiplier
      - Enemies Don't Move
      - Enemies Don't Attack


      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
      • 137 replies
    • (Subway Surfers China) 地铁跑酷 - 夏季运动主题开启 v6.03.0 +4 Cheats
      Modded/Hacked App: 地铁跑酷 - 官方中文版 By DREAMSKY Technology Limited
      Bundle ID: com.kiloo.subwaysurf.cn
      iTunes Store Link: https://apps.apple.com/cn/app/%E5%9C%B0%E9%93%81%E8%B7%91%E9%85%B7-%E5%AE%98%E6%96%B9%E4%B8%AD%E6%96%87%E7%89%88/id995122577?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:
      - Free iAP
      - All Hoverboards Unlocked
      - Double Score Enabled
      - Double Coins Enabled


      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
      • 273 replies
    • (My Heroes Dungeon China) 我的勇者 v2.22.2 +3 Jailed Cheats
      Modded/Hacked App: 我的勇者:5周年 By Shenzhen Moli Shuyu Network Technology Co., Ltd.
      Bundle ID: com.rsg.MyheroApp
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%88%91%E7%9A%84%E5%8B%87%E8%80%85-5%E5%91%A8%E5%B9%B4/id1458703401?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
      - Dumb Enemies


      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@iosgods.com'.
      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
      • 73 replies
    • (My Heroes Dungeon China) 我的勇者 v2.22.2 +3 Cheats
      Modded/Hacked App: 我的勇者 By Shenzhen Moli Shuyu Network Technology Co., Ltd.
      Bundle ID: com.rsg.MyheroApp
      iTunes Store Link: https://apps.apple.com/cn/app/%E6%88%91%E7%9A%84%E5%8B%87%E8%80%85/id1458703401?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


      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
      • 338 replies
    • PackMon Idle:Trainer Simulator v1.3.1 +2 Cheats
      Modded/Hacked App: PackMon Idle:Trainer Simulator By 3KM Inc.
      Bundle ID: com.threeKM.packMonsterIdle.app
      iTunes Store Link: https://apps.apple.com/us/app/packmon-idle-trainer-simulator/id6711349211?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
      - Defense Multplier
      - Unlimited Currencies → Spend/Gain


      Non-Jailbroken & No Jailbreak required hack(s): 


      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
      • 54 replies
    • PackMon Idle:Trainer Simulator v1.3.1 +2 Jailed Cheats
      Modded/Hacked App: PackMon Idle:Trainer Simulator By 3KM Inc.
      Bundle ID: com.threeKM.packMonsterIdle.app
      iTunes Store Link: https://apps.apple.com/us/app/packmon-idle-trainer-simulator/id6711349211?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
      - Unlimited Currencies → Spend/Gain


      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@iosgods.com'.
      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
      • 63 replies
    • The Crown Saga Pi’s Adventure v1.1.52 + 3 Jailed Cheats
      Modded/Hacked App: 테일즈 오브 크라운 : 방치형 RPG By Super Rabbit Games Corp.
      Bundle ID: com.superrabbitgames.crownquest
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%85%8C%EC%9D%BC%EC%A6%88-%EC%98%A4%EB%B8%8C-%ED%81%AC%EB%9D%BC%EC%9A%B4-%EB%B0%A9%EC%B9%98%ED%98%95-rpg/id6471469993?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Never Die
      - Move Speed Multiplier

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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@iosgods.com'.
      STEP 8: 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. 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 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
      • 18 replies
    • The Crown Saga Pi’s Adventure v1.1.52 + 3 Cheats
      Modded/Hacked App: 테일즈 오브 크라운 : 방치형 RPG By Super Rabbit Games Corp.
      Bundle ID: com.superrabbitgames.crownquest
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%85%8C%EC%9D%BC%EC%A6%88-%EC%98%A4%EB%B8%8C-%ED%81%AC%EB%9D%BC%EC%9A%B4-%EB%B0%A9%EC%B9%98%ED%98%95-rpg/id6471469993?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

      - Damage Multiplier
      - Never Die
      - Move Speed Multiplier

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 8 replies
    • HungryAliens v1187 +2 Jailed Cheats
      Modded/Hacked App: HungryAliens By DETAIL GAMES Inc.
      Bundle ID: com.DetailGames.HungryAliens
      iTunes Store Link: https://apps.apple.com/us/app/hungryaliens/id6449141384?uo=4

       

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - Damage Multiplier
      - Never Die

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App







       

      📖 PC Installation Instructions

      STEP 1: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see our iOSGods App IPA Download Tutorial which includes a video example.
      STEP 2: Download Sideloadly and install it on your Windows or Mac.
      STEP 3: Open Sideloadly on your computer, connect your iOS device, and wait until your device name appears in Sideloadly.
      STEP 4: Once your iDevice is recognized, drag the modded .IPA file you downloaded and drop it into the Sideloadly application.
      STEP 5: Enter your Apple Account email, then press “Start.” You’ll then be asked to enter your password. Go ahead and provide the required information.
      STEP 6: Wait for Sideloadly to finish sideloading/installing the hacked IPA. If there are issues during installation, please read the note below.
      STEP 7: 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@iosgods.com'.
      STEP 8: 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. 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 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
      • 5 replies
    • HungryAliens v1187 +2 Cheats
      Modded/Hacked App: HungryAliens By DETAIL GAMES Inc.
      Bundle ID: com.DetailGames.HungryAliens
      iTunes Store Link: https://apps.apple.com/us/app/hungryaliens/id6449141384?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

      - Damage Multiplier
      - Never Die

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack







       

      📖 iOS Installation Instructions

      STEP 1: Download the .deb 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 needed, tap on the downloaded file again, then select ‘Normal Install’ from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. If it doesn’t install successfully, see the note below.
      STEP 5: Open the game, log in to your iOSGods account when asked, then toggle on the features you want and enjoy!

       

      NOTE: If you have any questions or problems, read our Jailbreak iOS Hack Troubleshooting & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue 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

       

      More iOS App Hacks
      If you’re looking for Non-Jailbroken & No Jailbreak required iOS IPA hacks, visit the iOS Game Cheats & Hacks or the iOSGods App for a variety of modded games and apps for non-jailbroken iOS devices.

      Modded Android APKs
      Need modded apps or games for Android? Check out the latest custom APK mods, cheats & more in our Android Section.
      • 4 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