티스토리 뷰




Error


에러는 아니다.

이 문구는 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>









공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
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
글 보관함