Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decompiling apk using apktool

I need to decompile & recompile an apk on windows... I am following this link Reverse Engineer APK

The issue is I can't find the file that makes requests (refer to above link)"Find the file that makes requests grep -r "RequestUtil.java" " I tried using WindowsGrep software, but unable to find such file.

I don't know if I am on the wrong track. Any help will be appreciated. Thanks

like image 786
sumit_programmer Avatar asked May 29 '14 13:05

sumit_programmer


1 Answers

After decompiling apk, change directory to the com.instagram.android/smali: cd com.instagram.android/smali

Search RequestUtil.java by Windows search or following command in command prompt: dir /s *RequestUtil.java*

If the RequestUtil.java not found, it does not exists! Make sure you decompile the correct version of apk.

like image 179
Amir Saniyan Avatar answered Oct 02 '22 23:10

Amir Saniyan