Swipe News App
Customize App
Customize App
To customize your Swipe News App, follow these steps to change the app name, app colors, app logo, and launcher icon in Android Studio.
1. Change App Name
- Open your project in Android Studio.
- In the Project view, navigate to
app/res/values/strings.xml. - Find the
app_namestring resource. It should look something like this:
<string name="app_name">Swipe News App</string>
2. Change App Colors
- In Android Studio, navigate to
app/res/values/colors.xml. - You'll see color resources defined like this:
<color name="purple_200">#FF6233</color> <color name="purple_500">#FF6233</color> <color name="purple_700">#FF000000</color> <color name="teal_200">#FF03DAC5</color> <color name="teal_700">#FF018786</color>
3. Change Launcher Icon
- If you want to use the Image Asset Studio to change the launcher icon:
- In Android Studio, right-click on the
appfolder. - Select New > Image Asset.
- In the Asset Type dropdown, select Launcher Icons (Adaptive and Legacy).
- Choose your logo image and configure the settings as needed.
- Click Next and Finish.
- In Android Studio, right-click on the
- This will automatically generate the appropriate launcher icons and place them in the correct
mipmap-directories.
By following these steps, you will successfully customize the app name, app colors, app logo, and launcher icon for your Swipe News App.