Skip to content

Simple yet advanced java to smali compiling script ( for Android )

Notifications You must be signed in to change notification settings

jaxparrow07/java2smali

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

Java2Smali

Simple yet advanced java to smali compiling script ( for Android )

Usage

java2smali -s 7.1.jar -o out MyImageView.java

The above compile the source file using android 7.1 sources and copy the smali to the out directory

Available Options :

Java2Smali : Simple yet advanced java to smali compiling script ( for Android )

Usage : java2smali [options] <source-file>

Options:

        -h, --help               Prints out this help menu
        -v, --verbose            Verbose output ( for javac )
        -s, --sdk <file>         Name of the sdk jar file ( $J2S_SDKS directory can be configured via config.sh )
        -o, --out <dir>          Compiles output into the given direcotry

Configuration

The script can be configured through config.sh which will be sourced upon running.

Variable Usage Downloads/Source
J2S_SDKS Path to a directory to look for android sdks ( used by -s and $J2S_DEFAULT_SDK ) Unoffical Github Repo or Online Android SDK Manager
J2S_DEFAULT_SDK Default sdk jar name ( looks for file in $J2S_SDKS ) N/A
J2S_FRAMEWORK Path to any android framework jar ( leave the value empty if you don't have any ) found in /system/framework/ of android ( use adb pull to retrieve )
J2S_DX Path to dx script ( found in android build-tools ) Offical (Command line tools) or Online Android SDK Manage
J2S_BAKSMALI Path to baksmali.jar Offical Github Repo

Note

I wrote this script since I was reverse engineering a systemui and was working with some custom layouts where I had to use gradle/andoid studio to compile the apk and get the smali code by apktool. Even tho, I couldn't compile some classes which had restricted apis like 'SurfaceControl'. So, I decided to write this script to do the task much faster. Feel free to open an Issue if you find any and you can contribute to this to repo by forking it.

About

Simple yet advanced java to smali compiling script ( for Android )

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages