mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 04:17:36 +02:00
moved the examples
git-svn-id: https://smali.googlecode.com/svn/trunk@79 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
23
examples/HelloWorld/HelloWorld.smali
Normal file
23
examples/HelloWorld/HelloWorld.smali
Normal file
@ -0,0 +1,23 @@
|
||||
.class public LHelloWorld;
|
||||
|
||||
;Ye olde hello world application
|
||||
;To assemble and run this on a phone or emulator:
|
||||
;
|
||||
;java -jar smali.jar --dex HelloWorld.smali
|
||||
;zip HelloWorld.zip classes.dex
|
||||
;adb push HelloWorld.zip /data/local
|
||||
;adb shell dalvikvm -cp /data/local/HelloWorld.zip HelloWorld
|
||||
|
||||
.super Ljava/lang/Object;
|
||||
|
||||
.method public static main([Ljava/lang/String;)V
|
||||
.registers 2
|
||||
|
||||
sget-object v0, Ljava/lang/System;->out:Ljava/io/PrintStream;
|
||||
|
||||
const-string v1, "Hello World!"
|
||||
|
||||
invoke-virtual {v0, v1}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V
|
||||
|
||||
return-void
|
||||
.end method
|
Reference in New Issue
Block a user