Tuesday, August 5, 2014

[Tutorial] Making own Android App

[Tutorial] Making your own Android App

Actually it’s not actually making! You can say it Modding..
So let’s start!
Necessary Tools
-APKTOOL
-Notepad++
-Respect
-An Apk to work with

At first decompile a apk by Apktool.. Then
Find These files
-> res
->smali
->apktool.yml
->androidmanfiest.xml
Now open apktool.yml and search for these lines
Apk file name- Snigdho.apk
PackageInfo
Cur_package: com.bel.android.snigdho
Orig_Package: com.bel.android.snigdho

For Example change them to:-
Apk file name- XaynoUI.apk
PackageInfo
Cur_package: com.bel.android.xaynoui
Orig_Package: com.bel.android.xaynoui
Now save it and open AndroidManfiest.xml
And search for these lines
package="com.bel.android.snigdho "

Change it to for Example
package="com.bel.android.xayno "
Now open smali>com>snigdho
And rename “snigdho” to “xayno”
And save
Your Package Name is Changed
Now to change app name open AndroidManfiest.xml and search for these lines –
<application android:label =”@string/appname” android:name= “.SnigdhoApplication”
Rename It to –
<application android:label=”Xayno” android:name= “.SnigdhoApplication”
And save!
Now open res>values>strings.xml
And Search for these lines –
string name="app_name">Snigdho</string>

Rename it to for example
-  string name="app_name">Xayno</string>
And save!
Now if you want to customize it open res>drawable nodpi and there you will see some pngs customize them as your will.
Now recompile and Sign The apk! But don’t do App stealing because none of us support this!

Written By : Snigdho Hasan

No comments:

Post a Comment