Initial page

Customize Project

Project customizing

Project Structure

Within each Android app module, files are shown in the following groups:

manifest

Contains the AndroidManifest.xml file.

java

Contains the Java source code files, separated by package names, including JUnit test code.

res

Contains all non-code resources, such as XML layouts, UI strings, and bitmap images, divided into corresponding sub-directories. For more information about all possible resource types, see Providing Resources.

To know more about project structure please go through this link Android Project Structure

Change App name

To change project name follow below steps.

App > res > values > strings.xml

 <string name="app_name">QuickChat</string>

Change App colors

App > res > values > colors.xml

 <color name="colorPrimary">#006257</color> <color name="colorPrimaryDark">#005048</color> <color name="colorAccent">#25D366</color> <color name="primary_text">#212121</color> <color name="secondary_text">#878787</color>

Change App icon

Place your app icon inside mipmap folder -> app\src\main\res\mipmap\

Icon of the name should be "ic_launcher.png"

Change App Package Name

Open App level build.gradle and change ApplicationId variable inside android > defaultConfig

applicationId "in.raushanjha.quickchat"

Change icon on splash screen

App > res > drawable > logo.png

Change company icon on splash screen App > res > drawable > logo.png

Demo App URL: http://bit.ly/2GumC7y

Last updated