Failed to recompile original project with backdoor
Failed to recompile the original project with a backdoor
This error occurs with:
Java new version:
Explanation: By default, kali sets java to the newest version it cannot recompile apk but downgrade to java8 will fix this error.
Apktool old version:
Explanation: This is the Biggest Drawback of Fatrat because Fatrat uses old version apktool but manually updating apktool to the new version will fix this error.
Installing the required dependencies:
Explanation: Maybe you may forget to install the required dependencies but installing them will fix this error.
Let's fix this!
Downgrading java to java8:
1. Type the below command in the terminal.
update-alternatives --config java
2. Choose option 2 and hit enter.
Manually updating apktool to the new version:
Click here to the post
Installing the required dependencies:
1. Type the below commands to install required dependencies.
sudo apt-get install lib32stdc++6
sudo apt-get install lib32ncruses6
sudo apt-get install lib32z1
2. You may get errors like below:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package lib32ncruses6
3. Make sure that your sources are correct, so do
leafpad /etc/apt/sources.list
5. Remove everything and paste the following lines.
deb http://http.kali.org/kali kali-rolling main contrib non-free
deb-src http://http.kali.org/kali kali-rolling main non-free contrib
6. Save and quit then do
sudo apt-get update
sudo apt-get upgrade
apt-get update --fix-missing
apt autoremove
7. Now try again installing dependencies.
If this post worth your time then please share it.
Ads go here

Comments