# Customizing basics

## Editing AndroidManifest.xml

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

{% code title="AndroidManifest.xml" %}

```markup
<data
   android:host="dev.itsanubhav.com"
   android:scheme="http" />
```

{% endcode %}

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.

{% code title="Config.java" %}

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

{% endcode %}

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.

{% code title="strings.xml" %}

```markup
<string name="app_name">WorDroid 3</string>
<string name="site_slogan">A simple slogan text</string>
```

{% endcode %}

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.

{% code title="colors.xml" %}

```markup
<color name="colorPrimary">#4465F0</color>
<color name="colorPrimaryDark">#4465F0</color>
<color name="colorAccent">#4465F0</color>
<color name="tabGradientColor">#4465F0</color>
```

{% endcode %}

Change the color hex values to the color you want.
