최근 안드로이드 개발을 하다보면 이전에는 볼 수 없었던 에러 or 경고가 발생하는 것을 알 수 있다.AndroidManifest.xml 에서 아래와 같은 경고가 발생하는 것을 볼 수 있다.App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for more details. 이 경고를 해결하는 법은 아주 간단하다. 아래의 소스처럼 android.intent.action.VIEW 액션을 한 줄 추가해준다. 저 경고를 좀 더 살펴보면 아래와 같은 메세지를 볼 수 있다.App is not indexable by Google Se..