1. 程式人生 > >解決AndroidMainifest.xml黃色提示:consider adding at least one Activity with an ACTION-VIEW intent filter.的方法

解決AndroidMainifest.xml黃色提示:consider adding at least one Activity with an ACTION-VIEW intent filter.的方法

黃色報錯提示:

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. less... (Ctrl+F1) 

 

解決方法:在<intent-filter>標籤下新增:<action android:name="android.intent.action.VIEW"/>

<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>