Tutorial ADDING A CUSTOM "TOAST FROM HTML"

LEIIKUN

Retired Staff
Retired but loved <3
BEFORE WE START THE TUTORIAL PLEASE READ!
DON'T STEAL OTHER MODDER WORK AND REPLACE CREDIT TO YOU!


Requirements:
APK EDITOR PRO
- Android
APK Tool - PC
A brain


Images EXAMPLE:

Go to "Android Manifest" File and find this Text: (Example Activity)
Code:
android:name="com.dogbytegames.deadventure.MainActivity"
<action
android="android.intent.action.MAIN"/>
<category
android:name="android.intent.category.LAUNCHER"/>
or its mean the "First App Launch Activity"



You have to find MainActivity.smali file at smali/com/dogbytegame/deadventure/:
Open the MainActivity.smali file and search the word "onCreate" and at last you can find ".end method"
Code:
.method
protected onCreate(Landroid/os/Bundle;)V
Code:
return void
.end method

Put this text code under .end method:
! Hidden Content !
You must be signed up and make a comment or click 'Like' under this post before you can see the hidden links contained here.
You might need to refresh the page after pressing like. If you still facing issues revealing the hidden links, please read this.

As you notice the ".line 23"
Code:
.line 23
    const-string v7, "<b>Hacked by <font color=#FFA000>Zenitsu</font></b><br/><br/><font color=#22E40E><u>www.platinmods.com</u></font>"

Code:
const-string v8, "zenitsu"
Code:
const-string v8, "mtnzenitsu"
Change it on your own!.


Thanks and Have a good day!
 
@Zenitsu⚡ you said change on your own, what will these 3 change? Since you can change name with text on line 23
const-string v8, "platin"
const-string v8, "zenitsu"
const-string v8, "mtnzenitsu"
 
Back
Top Bottom