본문으로 바로가기
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.

 

커밋을 하려고 보니 위와 같은 warning이 떴다.

무슨말인지 구글링을 해보니 블로그에서 아래와 같은 내용을 찾았다.

 

위 내용은 사용자가 개발한 앱으로 더 많은 유입을 유도하고, 내 앱에서 어떤 컨텐츠를 많이 사용하는지 알아내기 위한 App link Indexing 기능을 사용하라는 경고이다. 나의 앱을 더 최적화 할 수 있는 방법을 알려주기 위한 설정 방법인듯 하다.
사실 없어도 앱을 개발하는 데는 아무 문제가 없다.
출처: https://like-tomato.tistory.com/164 [토마토의 일상 얘기]

 

아래와 같이 추가해주니 경고 메시지가 사라졌다.

 

1
2
3
4
5
6
7
8
<activity android:name=".MainActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <!-- 추가함 -->
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
cs