Skip to content

Commit

Permalink
added --help or -help options
Browse files Browse the repository at this point in the history
  • Loading branch information
anantshri committed Apr 10, 2016
1 parent 175ea0b commit c821afe
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apk2java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ echo "This is a script created by Anant Shrivastava"
echo "http://anantshri.info"
echo "Designed and Tested on Android Tamer"
echo "This script will work on automating the work of extracting the source code out from the apk file"
if [ $1 == "--help" -o $1 == "-help" ]
then
echo ""
echo "$0 APK_FILE_NAME"
exit
fi
echo "Starting APK Decompile"
# JAR KEEP is a variable which allows you to keep jar file converted using dex2jar.
# 0 is off
Expand Down

0 comments on commit c821afe

Please sign in to comment.