Skip to content

Commit 2738dc9

Browse files
author
ZenCodex
committed
initial commit
0 parents commit 2738dc9

File tree

1,341 files changed

+86741
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,341 files changed

+86741
-0
lines changed

JD-GUI.app/Contents/Info.plist

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key> <string>English</string>
6+
<key>CFBundleExecutable</key> <string>jd-gui</string>
7+
<key>CFBundleName</key> <string>JD-GUI</string>
8+
<key>CFBundleGetInfoString</key> <string>JD-GUI version 0.3.5, (c) 2008-2010 Emmanuel Dupuy</string>
9+
<key>CFBundleIconFile</key> <string>jd-gui.icns</string>
10+
<key>CFBundleIdentifier</key> <string>jd.jd-gui</string>
11+
<key>CFBundleInfoDictionaryVersion</key> <string>6.0</string>
12+
<key>CFBundlePackageType</key> <string>APPL</string>
13+
<key>CFBundleLongVersionString</key> <string>0.3.5, (c) 2008-2010 Emmanuel Dupuy</string>
14+
<key>CFBundleShortVersionString</key> <string>0.3.5</string>
15+
<key>CFBundleVersion</key> <string>0.3.5</string>
16+
<key>CSResourcesFileMapped</key> <true/>
17+
<key>LSRequiresCarbon</key> <true/>
18+
<key>NSHumanReadableCopyright</key> <string>Copyright 2008-2010 Emmanuel Dupuy</string>
19+
<key>CFBundleDocumentTypes</key>
20+
<array>
21+
<dict>
22+
<key>CFBundleTypeExtensions</key>
23+
<array>
24+
<string>class</string>
25+
</array>
26+
<key>CFBundleTypeName</key> <string>Class File</string>
27+
<key>CFBundleTypeRole</key> <string>Viewer</string>
28+
<key>LSIsAppleDefaultForType</key> <true/>
29+
<key>LSTypeIsPackage</key> <false/>
30+
</dict>
31+
<dict>
32+
<key>CFBundleTypeExtensions</key>
33+
<array>
34+
<string>jar</string>
35+
</array>
36+
<key>CFBundleTypeName</key> <string>Jar File</string>
37+
<key>CFBundleTypeRole</key> <string>Viewer</string>
38+
<key>LSIsAppleDefaultForType</key> <true/>
39+
<key>LSTypeIsPackage</key> <false/>
40+
</dict>
41+
<dict>
42+
<key>CFBundleTypeExtensions</key>
43+
<array>
44+
<string>zip</string>
45+
</array>
46+
<key>CFBundleTypeName</key> <string>Zip File</string>
47+
<key>CFBundleTypeRole</key> <string>Viewer</string>
48+
<key>LSIsAppleDefaultForType</key> <true/>
49+
<key>LSTypeIsPackage</key> <false/>
50+
</dict>
51+
<dict>
52+
<key>CFBundleTypeExtensions</key>
53+
<array>
54+
<string>log</string>
55+
<string>txt</string>
56+
</array>
57+
<key>CFBundleTypeName</key> <string>Log File</string>
58+
<key>CFBundleTypeRole</key> <string>Viewer</string>
59+
<key>LSIsAppleDefaultForType</key> <true/>
60+
<key>LSTypeIsPackage</key> <false/>
61+
</dict>
62+
</array>
63+
</dict>
64+
</plist>

JD-GUI.app/Contents/MacOS/jd-gui

1.38 MB
Binary file not shown.
43.4 KB
Binary file not shown.

apktool/apktool

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
#!/bin/bash
2+
#
3+
# Copyright (C) 2007 The Android Open Source Project
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
17+
# This script is a wrapper for smali.jar, so you can simply call "smali",
18+
# instead of java -jar smali.jar. It is heavily based on the "dx" script
19+
# from the Android SDK
20+
21+
# Set up prog to be the path of this script, including following symlinks,
22+
# and set up progdir to be the fully-qualified pathname of its directory.
23+
prog="$0"
24+
while [ -h "${prog}" ]; do
25+
newProg=`/bin/ls -ld "${prog}"`
26+
echo ${newProg}
27+
28+
29+
newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
30+
if expr "x${newProg}" : 'x/' >/dev/null; then
31+
prog="${newProg}"
32+
else
33+
progdir=`dirname "${prog}"`
34+
prog="${progdir}/${newProg}"
35+
fi
36+
done
37+
oldwd=`pwd`
38+
progdir=`dirname "${prog}"`
39+
cd "${progdir}"
40+
progdir=`pwd`
41+
prog="${progdir}"/`basename "${prog}"`
42+
cd "${oldwd}"
43+
44+
45+
jarfile=apktool.jar
46+
libdir="$progdir"
47+
if [ ! -r "$libdir/$jarfile" ]
48+
then
49+
echo `basename "$prog"`": can't find $jarfile"
50+
exit 1
51+
fi
52+
53+
javaOpts=""
54+
55+
# If you want DX to have more memory when executing, uncomment the following
56+
# line and adjust the value accordingly. Use "java -X" for a list of options
57+
# you can pass here.
58+
#
59+
javaOpts="-Xmx256M"
60+
61+
# Alternatively, this will extract any parameter "-Jxxx" from the command line
62+
# and pass them to Java (instead of to dx). This makes it possible for you to
63+
# add a command-line parameter such as "-JXmx256M" in your ant scripts, for
64+
# example.
65+
while expr "x$1" : 'x-J' >/dev/null; do
66+
opt=`expr "$1" : '-J\(.*\)'`
67+
javaOpts="${javaOpts} -${opt}"
68+
shift
69+
done
70+
71+
if [ "$OSTYPE" = "cygwin" ] ; then
72+
jarpath=`cygpath -w "$libdir/$jarfile"`
73+
else
74+
jarpath="$libdir/$jarfile"
75+
fi
76+
77+
# add current location to path for aapt
78+
PATH=$PATH:`pwd`;
79+
export PATH;
80+
exec java $javaOpts -jar "$jarpath" "$@"

apktool/apktool.jar

7.85 MB
Binary file not shown.

arm-bin/busybox

1.11 MB
Binary file not shown.

arm-bin/dexopt-wrapper

11.9 KB
Binary file not shown.

arm-bin/tcpdump

631 KB
Binary file not shown.

baksmali/baksmali-1.2.2.jar

801 KB
Binary file not shown.

baksmali/baksmali-1.4.2.jar

528 KB
Binary file not shown.

0 commit comments

Comments
 (0)