在AndroidManifest.xml中的android项目中,它发出警告-Google搜索无法将该应用编入索引!
所以
1:这是什么意思?
2:为什么会发生这种情况以及如何解决?
我已经尝试了一些操作(例如添加URL),但是由于我不完全了解这意味着什么,所以无法正确执行这些操作。
我正在使用的Android Studio版本是3.4.1
答案 0 :(得分:1)
这是将您的应用页面公开给Google并使其抓取您的应用内容,以便用户可以在google上搜索并在结果中看到您的应用。
我通过将其添加到我的一项活动中来消除了此警告,尽管最佳做法是为您的应用程序构建一个网站,并将其网址作为主机:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="play.google.com"
android:pathPrefix="/store/apps/details?id=<app.package.name>"
android:scheme="https" />
</intent-filter>
有关更多信息,请参见: https://www.youtube.com/watch?v=C35OSHlTNwA