Jump to content

ADB.exe 1.0.36 + Fastboot.exe for Windows


ThePianoGuy

5 posts in this topic

Recommended Posts

What Is ADB?
Android Debug Bridge (adb) is a command line tool that lets you communicate with an emulator or connected Android device. You can find the adb tool in android sdk/platform-tools or Download here

Download adb.exe 1.0.36 + fastboot for Windows

Revision e02fe72a18c3-android

Downloaded from Android SDK. 100% clean and untouched

It contains the following files:
adb.exe
AdbWinApi.dll
AdbWinUsbApi.dll
fastboot.exe

----------------------------------------------------------------------------------------------------------------------------------
List of commands:



-a

directs adb to listen on all interfaces for a connection
 

-d

directs command to the only connected USB device
returns an error if more than one USB device is present.
 

-e

directs command to the only running emulator.

returns an error if more than one emulator is running.
 

-s <specific device>

directs command to the device or emulator with the given serial number or qualifier. Overrides ANDROID_SERIAL environment variable.
 

-p <product name or path>

simple product name like 'sooner', or a relative/absolute path to a product out directory like 'out/target/product/sooner'. If -p is not specified, the ANDROID_PRODUCT_OUT environment variable is used, which must be an absolute path.
 

-H

Name of adb server host (default: localhost)
 

-P

Port of adb server (default: 5037)
 

devices [-l]

list all connected devices
('-l' will also list device qualifiers)
 

connect <host>[:<port>]

connect to a device via TCP/IP. Port 5555 is used by default if no port number is specified.
 

disconnect [<host>[:<port>]]

disconnect from a TCP/IP device. Port 5555 is used by default if no port number is specified. Using this command with no additional arguments will disconnect from all connected TCP/IP devices.

----------------------------------------------------------------------------------------------------------------------------------
Device commands:
 

adb push <local>... <remote>

copy files/dirs to device
 

adb pull [-a] <remote>... <local>

copy files/dirs from device
(-a preserves file timestamp and mode)
 

adb sync [ <directory> ]

copy host->device only if changed
(-l means list but don't copy)
 

adb shell [-e escape] [-n] [-Tt] [-x] [command]

run remote shell command (interactive shell if no command given)
(-e: choose escape character, or "none"; default '~')
(-n: don't read from stdin)
(-T: disable PTY allocation)
(-t: force PTY allocation)
(-x: disable remote exit codes and stdout/stderr separation)
 

adb emu <command>

run emulator console command
 

adb logcat [ <filter-spec> ]

View device log
 

adb forward --list

list all forward socket connections. the format is a list of lines with the following format: <serial> " " <local> " " <remote> "\n"
 

adb forward <local> <remote>

forward socket connections
forward specs are one of:
* tcp:<port>
* localabstract:<unix domain socket name>
* localreserved:<unix domain socket name>
* localfilesystem:<unix domain socket name>
* dev:<character device name>
* jdwp:<process pid> (remote only)
 

adb forward --no-rebind <local> <remote>

same as 'adb forward <local> <remote>' but fails if <local> is already forwarded
 

adb forward --remove <local>

remove a specific forward socket connection
 

adb forward --remove-all

remove all forward socket connections
 

adb reverse --list

list all reverse socket connections from device
 

adb reverse <remote> <local>

reverse socket connections
reverse specs are one of:
* tcp:<port>
* localabstract:<unix domain socket name>
* localreserved:<unix domain socket name>
* localfilesystem:<unix domain socket name>
 

adb reverse --no-rebind <remote> <local>

same as 'adb reverse <remote> <local>' but fails if <remote> is already reversed.
 

adb reverse --remove <remote>

remove a specific reversed socket connection
 

adb reverse --remove-all

remove all reversed socket connections from device
 

adb jdwp

list PIDs of processes hosting a JDWP transport
 

adb install [-lrtsdg] <file>

push this package file to the device and install it
(-l: forward lock application)
(-r: replace existing application)
(-t: allow test packages)
(-s: install application on sdcard)
(-d: allow version code downgrade (debuggable packages only))
(-g: grant all runtime permissions)
 

adb install-multiple [-lrtsdpg] <file...>

push this package file to the device and install it
(-l: forward lock application)
(-r: replace existing application)
(-t: allow test packages)
(-s: install application on sdcard)
(-d: allow version code downgrade (debuggable packages only))
(-p: partial application install)
(-g: grant all runtime permissions)
 

adb uninstall [-k] <package>

remove this app package from the device
('-k' means keep the data and cache directories)
 

adb bugreport [<zip_file>]

return all information from the device that should be included in a bug report.
 

adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]

write an archive of the device's data to <file>. If no -f option is supplied then the data is written to "backup.ab" in the current directory.
(-apk|-noapk enable/disable backup of the .apks themselves in the archive; the default is noapk.)
(-obb|-noobb enable/disable backup of any installed apk expansion (aka .obb) files associated with each application; the default is noobb.)
(-shared|-noshared enable/disable backup of the device's shared storage / SD card contents; the default is noshared.)
(-all means to back up all installed applications)
(-system|-nosystem toggles whether -all automatically includes system applications; the default is to include system apps)
(<packages...> is the list of applications to be backed up. If the -all or -shared flags are passed, then the package list is optional. Applications explicitly given on the command line will be included even if -nosystem would ordinarily cause them to be omitted.)
 

adb restore <file>

restore device contents from the <file> backup archive
 

adb disable-verity

disable dm-verity checking on USERDEBUG builds
 

adb enable-verity

re-enable dm-verity checking on USERDEBUG builds
 

adb keygen <file>

generate adb public/private key. The private key is stored in <file>, and the public key is stored in <file>.pub. Any existing files are overwritten.
 

adb help

show this help message
 

adb version

show version num

----------------------------------------------------------------------------------------------------------------------------------
Scripting:
 

adb wait-for[-<transport>]-<state>

wait for device to be in the given state: device, recovery, sideload, or bootloader
Transport is: usb, local or any [default=any]
 

adb start-server

ensure that there is a server running
 

adb kill-server

kill the server if it is running
 

adb get-state

prints: offline | bootloader | device
 

adb get-serialno

prints: <serial-number>
 

adb get-devpath

prints: <device-path>
 

adb remount

remounts the /system, /vendor (if present) and /oem (if present) partitions on the device read-write
 

adb reboot [bootloader|recovery]

reboots the device, optionally into the bootloader or recovery program.
 

adb reboot sideload

reboots the device into the sideload mode in recovery program (adb root required).
 

adb reboot sideload-auto-reboot

reboots into the sideload mode, then reboots automatically after the sideload regardless of the result.
 

adb sideload <file>

sideloads the given package
 

adb root

restarts the adbd daemon with root permissions
 

adb unroot

restarts the adbd daemon without root permissions
 

adb usb

restarts the adbd daemon listening on USB
 

adb tcpip <port>

restarts the adbd daemon listening on TCP on the specified port

----------------------------------------------------------------------------------------------------------------------------------
Networking:
 

adb ppp <tty> [parameters]

Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns

----------------------------------------------------------------------------------------------------------------------------------
adb sync notes:
 

adb sync [ <directory> ]

<localdir> can be interpreted in several ways:
- If <directory> is not specified, /system, /vendor (if present), /oem (if present) and /data partitions will be updated.
- If it is "system", "vendor", "oem" or "data", only the corresponding partition is updated.

----------------------------------------------------------------------------------------------------------------------------------
Internal debugging:
 

adb reconnect

Kick current connection from host side and make it reconnect.
 

adb reconnect device

Kick current connection from device side and make it reconnect.

----------------------------------------------------------------------------------------------------------------------------------
Environment variables:
 

ADB_TRACE

Print debug information. A comma separated list of the following values 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
 

ANDROID_SERIAL

The serial number to connect to. -s takes priority over this if given.
 

ANDROID_LOG_TAGS

When used with the logcat option, only these debug tags are printed.

Link to comment
Share on other sites

Archived

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

  • Our picks

    • Merge Survival : Wasteland v1.27.1 +1 Cheat
      Modded/Hacked App: Merge Survival : Wasteland By Sticky Hands Inc.
      Bundle ID: com.stickyhands.mergesurvival
      iTunes Store Link: https://apps.apple.com/us/app/merge-survival-wasteland/id6443908990?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 Store


      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
      • 104 replies
    • ‎Sonic Forces - Racing Battle v4.27.0 +2 Cheats
      Modded/Hacked App: Sonic Forces - Racing Battle By Sega America
      Bundle ID: com.sega.sonic2017ios
      iTunes Store Link: https://apps.apple.com/us/app/sonic-forces-racing-battle/id1262362476?uo=4


      Hack Features:
      - god mode
      - no loss of rings


      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/
      • 394 replies
    • Toon Blast v13065 +3 Cheats
      Modded/Hacked App: Toon Blast By Peak Games
      Bundle ID: net.peakgames.toonblast
      iTunes Store Link: https://apps.apple.com/us/app/toon-blast/id1176027022?uo=4


      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:
      - items/coins increase
      - always red blocks
      - unlimited lives



      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
      • 384 replies
    • Hero Wars: Alliance v1.199.101 +2 Cheats
      Modded/Hacked App: Hero Wars - Fantasy World By Nexters Global LTD
      Bundle ID: com.nexters.titanhunters
      iTunes Store Link: https://apps.apple.com/us/app/hero-wars-fantasy-world/id1158967485?uo=4


      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:
      - 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.
      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
      • 323 replies
    • Guild of Heroes: Fantasy RPG v1.164.3 - [ x Player Damage & More ]
      Modded/Hacked App: Guild of Heroes: Fantasy RPG By BIT.GAMES PBL
      Bundle ID: com.goplaytoday.guildofheroes
      iTunes Store Link: https://itunes.apple.com/us/app/guild-of-heroes-fantasy-rpg/id979474617?mt=8&uo=4&at=1010lce4


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


      Hack Features:
      - x Player Damage - x1 - 10
      - x Player Defense - x1 - 10
      - Enemies Auto Die
      - Premium Activate
      - Freeze Resources
      - Freeze Potions

      All features are unlinked and only for player, you!
      Note:
      Not Responsible For Any Bans


      This hack is an In-Game Mod Menu (iGMM). In order to activate the Mod Menu, tap on the iOSGods button found inside the app. This hack works on the latest x64 or ARM64 iDevices: iPhone 5s, 6, 6 Plus, 6s, 6s Plus, 7, 7 Plus, 8, 8 Plus, X, Xr, Xs, Xs Max, SE, iPod Touch 6G, iPad Air, Air 2, Pro & iPad Mini 2, 3, 4 and later.
      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/79822-guild-of-heroes-fantasy-rpg-v1679-5k-gold-sell-value-more/
      • 1,522 replies
    • BitLife - Life Simulator v3.13.10 Jailed Cheats +2
      Modded/Hacked App: BitLife - Life Simulator by Candywriter, LLC
      Bundle ID: com.wtfapps.apollo16
      iTunes Store Link: https://itunes.apple.com/us/app/bitlife-life-simulator/id1374403536?mt=8&uo=4&at=1010lce4



      Hack Features:
      - Infinite Cash



      Hack Download Link: https://iosgods.com/topic/84167-arm64-bitlife-life-simulator-v16-jailed-cheats-1/
      • 3,941 replies
    • Age of Magic Cheats v2.20.0 +2 [ Auto Win ]
      Modded/Hacked App: Age of Magic: Turn-Based RPG by Playkot Ltd
      Bundle ID: com.playkot.ageofmagic
      iTunes Store Link: https://apps.apple.com/us/app/age-of-magic-turn-based-rpg/id1175370741?uo=4&at=1010lce4


      Hack Features:
      - God Mode
      - Auto-Win


      Hack Download Link: https://iosgods.com/topic/98670-arm64-age-of-magic-cheats-v1236-2/
      • 1,633 replies
    • [The God Of HighSchool Korea] 갓 오브 하이스쿨 v5.9.9 +1 Cheat
      Modded/Hacked App: 갓 오브 하이스쿨 By WONCOMZ.INC
      Bundle ID: com.goh.daya.ydonline
      iTunes Store Link: https://apps.apple.com/kr/app/%EA%B0%93-%EC%98%A4%EB%B8%8C-%ED%95%98%EC%9D%B4%EC%8A%A4%EC%BF%A8/id1026748340?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:
      - Instant Win


      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
      • 37 replies
    • Black Smith RPG - 이세계 대장장이 키우기 : 방치형 RPG v1.0.67 +4 Cheats
      Modded/Hacked App: 이세계 대장장이 키우기 : 방치형 RPG By Changgon Woo
      Bundle ID: com.dragonheart.blacksmithrpg
      iTunes Store Link: https://apps.apple.com/kr/app/%EC%9D%B4%EC%84%B8%EA%B3%84-%EB%8C%80%EC%9E%A5%EC%9E%A5%EC%9D%B4-%ED%82%A4%EC%9A%B0%EA%B8%B0-%EB%B0%A9%EC%B9%98%ED%98%95-rpg/id1665666407?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
      - EXP Multiplier
      - Drop Multiplier -> x1 - 1000


      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
      • 79 replies
    • Summoners War Cheats v8.3.2 +7 [Semi Auto Updating]
      Hacked App: Summoners War By Com2uS Corp.
      iTunes Link: https://itunes.apple.com/us/app/summoners-war/id852912420?mt=8&uo=4&at=1010lce4
      Bundle ID: com.com2us.smon.normal.freefull.apple.kr.ios.universal

      Hack Features:
      - Damage Multiplier 
      - Godmode
      - Monster Count Unlink
      - Max Accuracy
      - No Skill Cooldown
      - First Turn
      - Build buildings without having required level
      - Antiban
      • 6,620 replies
    • Pixel Hunter Idle v6.5 +3 Cheats
      Modded/Hacked App: 픽셀 헌터 키우기: 방치형 RPG By ZillionGames lnc
      Bundle ID: com.zilliongames.hunteridle
      iTunes Store Link: https://apps.apple.com/kr/app/%ED%94%BD%EC%85%80-%ED%97%8C%ED%84%B0-%ED%82%A4%EC%9A%B0%EA%B8%B0-%EB%B0%A9%EC%B9%98%ED%98%95-rpg/id1664366717?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
      - 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. 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
      • 302 replies
    • Seven Deadly Sins Korea - 일곱 개의 대죄: GRAND CROSS v8.6.37 +2 Cheats
      Modded/Hacked App: 일곱 개의 대죄: GRAND CROSS By Netmarble Corporation
      Bundle ID: com.netmarble.nanakr
      iTunes Store Link: https://apps.apple.com/kr/app/%EC%9D%BC%EA%B3%B1-%EA%B0%9C%EC%9D%98-%EB%8C%80%EC%A3%84-grand-cross/id1449552940?uo=4


      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
      - Unlimited Mana


      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

      Use A-Bypass to bypass the detection







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