Skip to content

NightlyNexus/dex-method-list

 
 

Repository files navigation

Dex Method List

A simple utility which lists all method references in a dex file.

Build by calling ./gradlew clean assemble. Run ./build/dex-method-list by passing in one or more dex or apk files as arguments or piping one through stdin.

For example:

$ ./build/dex-method-list src/test/resources/types.dex
Types <init>()
Types test(String)
Types test(String[])
Types test(boolean)
Types test(byte)
Types test(char)
Types test(double)
Types test(float)
Types test(int)
Types test(long)
Types test(short)
java.lang.Object <init>()

$ ./build/dex-method-list src/test/resources/one.apk
Params <init>()
Params test(String, String, String, String)
java.lang.Object <init>()

You can also use this tool as a library. Add a dependency on com.jakewharton.dex:dex-method-list:1.0.0 and use the DexMethods.list methods.

License

Copyright 2015 Jake Wharton

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A simple utility which lists all method references in a dex file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 46.2%
  • Kotlin 39.4%
  • Shell 14.4%