티스토리 뷰
( Android ) App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter.
ywlee 2018. 12. 24. 09:53Error
에러는 아니다.
이 문구는 Google Search 에 당신의 앱이 인덱싱 되지 않았으니,
최소 하나의 ACTION_VIEW 를 Manifest 에 추가하라는 문구입니다.
Google Search 라는 것이, google playstore 의 Search 인지,
Google Website 의 Search 인지는 아직 명확히 알아내지 못했습니다.
하지만, 구글갓이 하라니까 해야죠
Solved
Manifest.xml 의 최소 한개의 activity 에 ACTION_VIEW 를 추가하면 해결됩니다.
** 수정 이전
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".view.IntroActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".view.MainActivity" />
</application>
** 수정 이후
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".view.IntroActivity">
<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>
<activity android:name=".view.MainActivity" />
</application>
'Computer > Android&iOS' 카테고리의 다른 글
(iOS/swift4) Value of optional type 'CGFloat?' must be unwrapped to a value of type 'CGFloat' (0) | 2019.01.17 |
---|---|
(Android) Could not find com.android.tools.build:aapt2:3.2.1-4818971. (0) | 2019.01.14 |
(iOS/swift4) 간단한 로딩 view 띄우기 (UIActivityIndicatorView) (0) | 2018.12.17 |
(iOS/swift4) UICollectionView 예제 (0) | 2018.11.22 |
( Android ) 2018.11. Android OS 점유율 (0) | 2018.11.21 |
- Total
- Today
- Yesterday
- 리눅스
- 배열
- Phaser
- Asterisk
- mysql
- GIT
- 앵커브리핑
- Swift
- nodejs
- Node
- IOS
- linux
- node.js
- php
- BBC 가쉽
- 점유율
- 안드로이드
- Android
- 스위프트
- 깃헙
- 손석희
- Kotlin
- CentOS
- git hub
- xcode
- 뉴스룸
- C
- 서버
- C언어
- 노드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |