Published
- 1 min read
strings.xml in android kotlin
The solution for this is noted below
strings.xml in android kotlin
Solution
strings.xml file is a XML resource that provides an array of strings that can be
used throughout the app. The structure of it looks like below:
<resources>
<string name="app_name">My Android App </string>
</resources>
The strings.xml file can be found inside App-> Res -> Values -> strings.xml
Try other methods by searching on the site. That is if this doesn’t work