Text Assets

The text asset consists of the application name of another text component inside the app, to change it :

  1. You can see on the res/values/strings.xml

  2. Change value name in each strings tag according your needs.

strings.xml
<!--app info-->
<string name="app_name">Material Wallpaper</string>
<string name="app_copyright">Copyright &#169; 2021 Solodroid Developer \n All rights reserved</string>
<string name="play_more_apps">https://play.google.com/store/apps/developer?id=Solodroid</string>
<string name="gdpr_privacy_policy_url">https://sites.google.com/view/news-app-demo-privacy-policy/home</string>
<string name="share_text">I Would like to share this with you. Here You Can Download This Application from PlayStore</string>

<!--navigation name-->
<string name="title_nav_home">Wallpapers</string>
<string name="title_nav_category">Categories</string>
<string name="title_nav_favorite">Favorites</string>

<!--title tab menu and sort option-->
<string name="menu_recent">Recent</string>
<string name="menu_featured">Featured</string>
<string name="menu_popular">Popular</string>
<string name="menu_random">Random</string>
<string name="menu_live">Live Wallpaper</string>
<string name="title_sort">Sort Wallpapers</string>

<!--and more-->

Last updated