OSDN Git Service

APK checker.
authorAndy McFadden <fadden@android.com>
Tue, 9 Feb 2010 00:48:01 +0000 (16:48 -0800)
committerAndy McFadden <fadden@android.com>
Fri, 19 Feb 2010 18:18:04 +0000 (10:18 -0800)
commit2eceaea745773bb654bb4e52c00cafdedc68c0ac
tree94668a969a0e29c7ee9587c8eddfe5e248963eab
parentbae0f4fd87cb2a3eacb30a06840465ad04b2de53
APK checker.

Compares the fields and methods accessed by an APK against the public
API files generated by the build.  See the README for details.
14 files changed:
tools/apkcheck/Android.mk [new file with mode: 0644]
tools/apkcheck/README.txt [new file with mode: 0644]
tools/apkcheck/etc/apkcheck [new file with mode: 0644]
tools/apkcheck/etc/manifest.txt [new file with mode: 0644]
tools/apkcheck/src/Android.mk [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/ApiDescrHandler.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/ApiList.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/ApkCheck.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/Builtin.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/ClassInfo.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/FieldInfo.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/MethodInfo.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/PackageInfo.java [new file with mode: 0644]
tools/apkcheck/src/com/android/apkcheck/TypeUtils.java [new file with mode: 0644]