I am new at Android coding and this forum. When I am trying to run the project to test it I am getting the following error:-
\"app_name\" is not translate
With Android Studio, you can prevent lint from checking the MissingTranslation warning. Add the following to your app/build.gradle:
To ignore this in a gradle build add this to the android section of your build file:
android { ... lintOptions { disable 'MissingTranslation' } ... }