Customizing basics

Change Site URL, App Name, Colors, Launcher Icon

Editing AndroidManifest.xml

Go to app > manifests > AndroidManifest.xml and find the code mentioned below.

AndroidManifest.xml
<data
   android:host="dev.itsanubhav.com"
   
android:scheme="http" />

Now replace the dev.itsanubhav.com with your URL.

Change http with https if your site uses https

Change Site URL

Go to app > java > com > itsanubhav > wordroid3 > Config.java and find the code mentioned below.

Config.java
//your blog url
public static String SITE_URL = "http://dev.itsanubhav.com";

Replace http://dev.itsanubhav.com with your URL.

Change APP Name

Go to app > res > values > strings > strings.xml and find the code mentioned below.

strings.xml
<string name="app_name">WorDroid 3</string>

<string name="site_slogan">A simple slogan text</string>

Replace WorDroid 3 with your app name.

And Replcae A simple slogan text with your slogan.

Change APP's default color

Go to app > res > values > colors > colors.xml and find the code mentioned below.

colors.xml
<color name="colorPrimary">#4465F0</color>
<color name="colorPrimaryDark">#4465F0</color>
<color name="colorAccent">#4465F0</color>

<color name="tabGradientColor">#4465F0</color>

Change the color hex values to the color you want.

Last updated