Error: “app_name” is not translated in af

后端 未结 11 597
灰色年华
灰色年华 2021-01-30 16:21

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

11条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 16:59

    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'
        }
        ...
    }
    

提交回复
热议问题