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

猜你喜欢

转载自www.cnblogs.com/blucesher/p/10213410.html
今日推荐