Swapnil133609 / apkinspector

Automatically exported from code.google.com/p/apkinspector
0 stars 0 forks source link

Smali Tab Does Not Display Smali Files #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open apkinspector
2. Click on File -> New
3. Choose sample apk file
4. After progress display finished, click on Methods tab.
5. Navigate to Method and click Smali tab

What is the expected output? What do you see instead?
Smali code for method should be displayed. 
No output is displayed in Smali tab  when clicking through methods.

What version of the product are you using? On what operating system?
Beta from Aug 29, 2011. 
BackTrack 5 release (Based on Ubuntu 10.04 LTS, Linux kernel 2.6.38)

Please provide any additional information below.

A .java file extension is being concatenated to the className instead of .smali 
in APKtool.py. 

APKtool.py (line 46):

        className = className[1:-1] + ".java"

Change to:

        className = className[1:-1] + ".smali"

Original issue reported on code.google.com by gigab...@gmail.com on 10 Jan 2012 at 3:05