Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 003-Decompile-APK/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ In the directory you unzipped in the previous lab, run the following command:
d2j-dex2jar classes.dex
```

This creates a files named `classes_dex2jar.jar` which we can then open using the GUI tool for exploring .jar files called `jd-gui`:
This creates a files named `classes-dex2jar.jar` which we can then open using the GUI tool for exploring .jar files called `jd-gui`:

```
jd-gui classes_dex2jar.jar
jd-gui classes-dex2jar.jar
```

Take some time to browse the classes in the applications in jd-gui. Did you find anything interesting or revealing about the application?