After googling and trying to understand basics of smali and java, I could come up with this. Please correct me where I have gone wrong.
Original code:
.method public Start()Z
.locals 1
const-string v0, "ABC"
invoke-static {v0}, Ljava/lang/System;->loadLibrary(Ljava/lang/String;)V
invoke-direct {p0}, Lcom/battlebot/dday/SplashActivity;->init()V
const/4 v0, 0x1
return v0
.end method
Translated to java code:
public Boolean Start() {
final String v0 = "ABC";
java.lang.System.loadLibrary(v0);
int v0 = 1;
}