본문 바로가기

나의 플랫폼/안드로이드

[Android] missing translation error

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

apk를 release 시키는 missing translation error 발생 할때가 있다.


<?xml version="1.0" encoding="utf-8"?>
<resources
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingTranslation">


<string name="app_name">AppName</string>

</resources>


그럴땐 위 소스와 같이 resource 태그에 2줄만 추가 하면 된다.


참고로 모든 strings.xml 파일에 2줄을 추가 해야만 한다.

그렇지 않으면 계속 에러가 발생 할 것이다.


다른 방법을 원하시는분들은 아래 블로그를 참고 하세요.

출처 : https://blog.asamaru.net/2015/11/05/android-is-not-translated-in-dot-dot-dot-lint-error/