Thursday, April 30, 2020

Lucky Patcher 8.7.4 || Rooted Android Phone Only ||

Lucky Patcher is an android program that allows you to use the full version of many applications without buying a license. It's no secret that most games and utilities are only available in demos. And in order to use all possible functions, you need to purchase a key. But now you can bypass the system and gain all the privileges without spending your own money. Is not it beautiful?

After installation, the program will scan all available applications on the device and display their full list. In the upper part, those of them (and highlighted in color) that are available for "treatment from the license" will be marked. It will be pleasant also that thanks to Lucky Patcher there will be an opportunity to launch in offline those applications which earlier demanded connection to the Internet.

Easy control, intuitive interface - these are the parameters taken by the developers as a basis. Scanning applications takes a minimum of time, like applying a patch.
.
.

Tube Mate || HD Youtube / Facebook Video Down-loader || Free Apps

TubeMate 3 is the third official version of one of the best apps when it comes to downloading YouTube videos onto your Android. Thanks to this app you can store all your favorite YouTube videos locally onto your device memory and watch them later on at your leisure without an Internet connection.
.
Using your app is as simple as accessing the video of your choice through the in-app browser. From there a quick tap on the arrow located at the bottom of your screen. Next step: select factors like resolution and video quality. Your options are: 1920x1080, 1280x720, 640x360, 176x144, etc. Plus you designate which file format you want for your videos: MP4, MP3, WEBM, OGG, etc.
.
Downloaded videos are stored by default onto your smartphone, but you can also download them directly onto your SD card. Definitively TubeMate 3 is a downloader tool that's really easy to use and has the added appeal of allowing you to download any video file off of YouTube within seconds. This third version of the app also has a very elegant interface that's a major improvement on earlier versions. 
.
.




.
.

Talking Tom Hero Dash || Full version || Unlimited Money

Talking Tom Hero Dash - a colorful runner that will be appreciated by fans of the genre. In the role of runners here will make cat Tom his friends. Each of the characters has unique abilities that can help in the race for the long haul. In the process of running around the player will have to collect coins, Dodge obstacles and fight with the evil raccoons. The main goal is the liberation of cat Angela, kidnapped by the leader of the raccoons. The gameplay and controls here are standard for such projects, so everyone will quickly understand these aspects.
.
.







.
.
.
DOWNLOAD APK  (UNLIMITED MONEY)

Angry Birds 2 || Full Version with Download Link ||


Angry Birds 2 – the second part of the legendary game series about the confrontation of birds and pigs. Since the first part of the gameplay have not changed dramatically. After an introductory video, explaining the essence of the conflict, the player is sent to the global map with the marked levels. In each mission you must use birds and slingshots to destroy fortresses and buildings, which occupy the green opponents. The larger the scale of the destruction, the more populated the scale of the pogrom, and the more stars for completing tasks given.
.
It is important to remember that the game is primarily a puzzle game, so you need time to use the special abilities of birds and to consider the material from which made the strengthening of pigs. Also in support will be a variety of items, increasing the probability of destruction of enemy explosives, balls, bearing structures that are easiest to make it.
.
The schedule is made at the level of the original. The visual component is still good and colorful. At the same level made and sound. Cannot without a smile hear funny voice over the music and shouting of the characters. Angry Birds 2 is an example of a sequel that keeps the high standard set by the first part. The game will appeal to fans of the original and all lovers of puzzles.
.
.
.


.
.
DOWNLOAD APK
.
DOWNLOAD OBB
.
.
Mirror Site If Above link Fail....
.
DOWNLOAD APK (Google Play Store)
.
.

Tuesday, April 28, 2020

[Tutorial] How to use ADB + root to backup Android device partitions

This is a step by step guide on how to backup an Android phone's firmware / partitions using adb. This covers partitions like boot, recovery, system etc.

Method 1: ADB Method I


  1. Install a root browser (e.g ROM Toolbox lite) and navigate to dev/block/platform . Open each folder in the platform folder till you find a folder named "by-name". Replace "your_folder" in the code below with the name of the folder which contains the by-name folder
  2. Launch ADB and type the code below. Press Enter after each line
    Code:
    adb shell
    ls -al /dev/block/platform/your_folder/by-name
  3. You should get an output of the phone's mount points
  4. Type the code below to dump the partition of your choice

    Code:
    adb shell
    su
    dd if=/yourMountingPoint of=/yourDestination/partitionType
  5. For example

    Code:
    adb shell
    su
    dd if=/dev/block/mmcblk0p9 of=/sdcard/system.img

Method 2: ADB dd 2


  1. Launch ADB and run the command below

    Code:
    adb shell
    cat /proc/dumchar_info
  2. You should have an output like

    Code:
    Part_Name          Size             StartAddr         Type  MapTo                 Region
    preloader    0x0000000000040000   0x0000000000000000   2   /dev/misc-sd           BOOT_1
    mbr          0x0000000000080000   0x0000000000000000   2   /dev/block/mmcblk0     USER
    ebr1         0x0000000000080000   0x0000000000080000   2   /dev/block/mmcblk0p1   USER
    pro_info     0x0000000000300000   0x0000000000100000   2   /dev/block/mmcblk0     USER
    nvram        0x0000000000500000   0x0000000000400000   2   /dev/block/mmcblk0     USER
    protect_f    0x0000000000a00000   0x0000000000900000   2   /dev/block/mmcblk0p2   USER
    protect_s    0x0000000000a00000   0x0000000001300000   2   /dev/block/mmcblk0p3   USER
    seccfg       0x0000000000020000   0x0000000001d00000   2   /dev/block/mmcblk0     USER
    uboot        0x0000000000060000   0x0000000001d20000   2   /dev/block/mmcblk0     USER
    bootimg      0x0000000001000000   0x0000000001d80000   2   /dev/block/mmcblk0     USER
    recovery     0x0000000001000000   0x0000000002d80000   2   /dev/block/mmcblk0     USER
    sec_ro       0x0000000000600000   0x0000000003d80000   2   /dev/block/mmcblk0p4   USER
    misc         0x0000000000080000   0x0000000004380000   2   /dev/block/mmcblk0     USER
    logo         0x0000000000300000   0x0000000004400000   2   /dev/block/mmcblk0     USER
    expdb        0x0000000000a00000   0x0000000004700000   2   /dev/block/mmcblk0     USER
    tee1         0x0000000000500000   0x0000000005100000   2   /dev/block/mmcblk0     USER
    tee2         0x0000000000500000   0x0000000005600000   2   /dev/block/mmcblk0     USER
    kb           0x0000000000100000   0x0000000005b00000   2   /dev/block/mmcblk0     USER
    dkb          0x0000000000100000   0x0000000005c00000   2   /dev/block/mmcblk0     USER
    android      0x0000000080000000   0x0000000005d00000   2   /dev/block/mmcblk0p5   USER
    cache        0x0000000010000000   0x0000000085d00000   2   /dev/block/mmcblk0p6   USER
    usrdata      0x000000030ce00000   0x0000000095d00000   2   /dev/block/mmcblk0p7   USER
    bmtpool      0x0000000001500000   0x0000000001500000   2   /dev/block/mmcblk0     USER
  3. If you wish to dump recovery.img for example, take note of the recovery line

    Code:
    recovery     0x0000000001000000   0x0000000002d80000   2   /dev/block/mmcblk0     USER
  4. Convert the Size and StartAddr values from Hexadecimal to Decimal then divide by 4096 (which is the Block Size)
    Run the command below

    Code:
    #mount -o ro,remount /emmc@android /system
    dd if=/dev/block/mmcblk0 bs=4096 skip=StartAddr count=Size | gzip >  /data/local/tmp/recovery.img.gz
  5. For Recovery in this example, it'll be

    Code:
    #mount -o ro,remount /emmc@android /system
    dd if=/dev/block/mmcblk0 bs=4096 skip=11648 count=4096 | gzip >  /data/local/tmp/recovery.img.gz
  6. Check your device for the dumped image

Method 3: ADB + ROMdump.zip method


  1. Setup ADB
  2. Download ROMdump
  3. Extract the file named "Install" from the ROMdump zip file and copy it to the same location as adb.exe
  4. Enable USB debugging on the phone (Settings > Developer > Tick USB Debugging) and connect the phone to PC
  5. Launch adb.exe (Open the adb folder > Hold Shift button > Right-click on any empty space > Select Open Command Window here)
  6. In the command window, type the following commands and press Enter after each:
    Code:
    adb devices
    adb push install /data/local/
    adb shell chmod 04755 /data/local/install
    adb shell /data/local/install
  7. Wait till pushing is complete
  8. Toggle Wi-Fi On then Off or Off then On then Off (depending on its current state)
  9. Type the command below in the command window then press Eenter
    Code:
    adb shell romdump
  10. Wait for the process to be complete and you'll have your ROMdump
  11. You'll find your files in a folder named romdump in the root of the SD card

Method 4: Terminal + ROMdump.zip method


  1. Ensure the phone is rooted (see https://blog.hovatek.com/how-to-root-and...ithout-pc/ )
  2. Install Android Terminal Emulator
  3. Download ROMdump
  4. Extract the file named "Install" from the ROMdump zip file and copy it to the root of the SD card (as in copy directly and not into any folder)
  5. Launch Terminal Emulator and type the following commands then press Enter after each
    Code:
    su
    cat /sdcard/install >/data/local/install
    chmod 04755 /data/local/install
    /data/local/install
  6. Wait for the process to complete
  7. Toggle Wi-Fi On then Off or Off then On then Off (depending on its current state)
  8. Type the command below in Terminal Emulator then press Enter
    Code:
    /system/bin/romdump
  9. Wait for the process to complete and you're done
  10. You'll find your files in a folder named romdump in the root of the SD card

Method 5:  ADB Method II


  1. Note: Only use this method for Boot and Recovery images, not for System image
    Also, you can use Terminal Emulator for this method instead of ADB
  2. Setup ADB
  3. Launch adb.exe (Open the adb folder > Hold Shift button > Right-click on any empty space > Select Open Command Window here)
  4. In the command window, type the following command then press Enter
    Code:
    adb shell
  5. If you're using Terminal emulator instead of ADB then type
    Code:
    su
    and Select Grant when prompted
  6. Type
    Code:
    cat proc/mtd
    or
    Code:
    cat proc/emmc
    depending on your phone type then press Enter
  7. You'll get an output similar to this:
    Code:
    dev:    size   erasesize  name
    mtd0: 000a0000 00020000 "misc"
    mtd1: 00480000 00020000 "recovery"
    mtd2: 00300000 00020000 "boot"
    mtd3: 0fa00000 00020000 "system"
    mtd4: 02800000 00020000 "cache"
    mtd5: 093a0000 00020000 "userdata"
  8. To dump the recovery image to your SD card, take note of the first word of the line which says “recovery” in the end. It is ‘mtd1’ in this example. Now use the command below, replacing ‘mtd1’ with the term that applies in your case, if different then press Enter:
    Code:
    dd if=/dev/mtd/mtd1 of=/sdcard/recovery.img bs=4096
  9. For boot image in this example, type the command below then press Enter
    Code:
    dd if=/dev/mtd/mtd2 of=/sdcard/boot.img bs=4096
  10. You should have your partition images dumped to the root of your SD card

Method 6: AIO Flasher Method


  1. Download AIO Flasher
  2. Launch it
  3. Enable USB debugging on the phone (Settings > Developer > Tick USB Debugging) and connect to PC via USB cord
  4. Go to The Backup / Restore tab
  5. Click on Install RomDump and ait till the log by the right shows
    Code:
    Pushing Romdump...
    Installed.
  6. Click Dump!
  7. Once complete, You'll find your files in a folder named romdump in the root of the SD card

Important Notice
A box / dongle can enable you easily achieve this without root

Reset Remove Mi password || By Pass Account verification For ALL MI / Xiaomi Mobile phone

Forgot Mi Account Password - How to Solve ?
So there are many users who forget mi Account password and they end up in a situation where there Xiaomi phone gets locked due to trying Multiple wrong patters and Pins. In that case Only thing you can do is entering your username and password to Unlock Mi Phone, But what if you can't remember ? Then you can Follow our Guide to Download Mi Account unlock tool to Remove Mi Account From Xiaomi Phone.
So if you Forgot Mi account password and want to Remove Mi Account from Redmi Phone then the only possible way is to Bypass the Mi cloud verification to enable your Device or by removing the Mi Account from your Phone. The Xiaomi unlock tool is the best method to Solve your problem.
You need not to worry about anything if your phone gets locked or you forget username. In this guide we will tell you the easiest way to Download Mi Account unlock tool to recover your password. The Mi unlock tool works almost on every Xiaomi Device So you can Follow all the steps and get back your device without any complex steps.




















Download Mi Account Unlock tool

Steps to Unlock Mi Account using Mi Unlock tool
  • First of all Make sure that you have read all the points in Pre-requirements section
  • Now Download Mi Account Unlock tool From Here, Copy it in a New folder on your PC or laptop
  • After Downloading Extract the Mi Account tool.exe as Administrator
  • Now turn off your Xiaomi Redmi Smartphone
  • Now Boot your Device into Recovery Mode, To boot your Xiaomi in Recovery mode you have to Press and Hold Volume Up+Power Key button together. Release the keys when you see Mi Logo.


  • Now run the Mi unlock tool on your PC
  • Now connect your device to your PC using a USB cable
  • Now Tap on the information tab on Mi Unlock tool, As soon as you tap on Info tab you will all the information about your device on the screen.
Download Mi account Unlock tool | Reset Remove Mi pasword
  • Now press on the Bypass mi account option.
Download Mi account Unlock tool | Reset Remove Mi pasword
  • As soon as you tap on Bypass Mi Account Option your Phone will reboot.
  • That's all!!! This is How you can Bypass Mi Account on your Any Xiaomi Phone
  • The First Reboot will take More time then usual, However its totally normal.