Skip to content

Instantly share code, notes, and snippets.

@lifuzu
lifuzu / helloworld.dex.md
Created April 1, 2014 17:10
execute the dex file in android with command
public class HelloWorld {
    public static void main(String[] args) {
         System.out.println("Hello World!");
    }
}

To run it on an android device:

javac HelloWorld.java