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/
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] image-chooser-library FileUriExposedException (0) | 2017.06.20 |
---|---|
[Android] SSL Disable 시키기 (Retrofit2, OkHttp3) (5) | 2017.06.15 |
[Android] android:launchMode="singleTask" 사용 시 발생하는 문제점 (1) | 2017.05.26 |
[Android] 특정 화면 잠금 해제 (0) | 2017.05.25 |
[Android] Error:Failed to resolve: com.google.android.gms:play-services-measurement (0) | 2017.05.23 |