WARNING
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.
inspection info:Adds URLs to get your app into the Google index; to get installs and traffic to your app from Google Search
issue id GoogleAppIndexingWarning
More info:
https://g.co/Appindexing/AndroidStudio
WHY
링크를 들어가 보면 앱 링크 추가에 관한 내용이 나온다.
앱 링크란 앱의 특정 컨텐츠로 사용자를 바로 안내하는 HTTP URL이다.
해당 기능을 통해 앱에 더 접근하기 쉽고 더 많은 유입을 이끌어 낼 수 있다.
다만 웹과 앱을 동시에 보유한 프로젝트에 한해 가능해 보인다.
여기서 구글 검색에서 해당 컨텐츠에 도달하기 위해 ACTION_VIEW 인텐트가 필요하다.
기본 설정으로 최소 하나 이상의 Activity에 ACTION_VIEW 인텐트 필터가 필요하다.
SOLUTION
<action android: name="android.intent.action.VIEW" />
위 코드를 한 개 이상의 Activity에 추가하면 warning을 해결할 수 있다.
ADVANCE
앱 링크에 대해 더 자세히 알고 싶다면...
https://developer.android.com/training/app-links
https://developer.android.com/training/app-links/deep-linking
https://developer.android.com/studio/write/app-link-indexing