gpt4 book ai didi

android - 如何在我的应用程序中添加 App Indexing 概念?

转载 作者:行者123 更新时间:2023-11-30 01:31:09 28 4
gpt4 key购买 nike

今天的问候!我有一个要在 Google Play 上部署的应用程序。最近我遇到了 App Indexing。我对此有疑问。我的应用程序是纯 native 的,没有使用任何 Web View ,是的,所有数据都是动态地来自 Web 服务的。我的问题是我可以将应用索引代码添加到我的 Application Main Launcher 类中吗?这是我的 list 。我应该在哪里粘贴应用程序索引代码?请指导我。

<application
android:name=".MyApplication"
android:allowBackup="true"
android:allowClearUserData="true"
android:enabled="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<receiver
android:name=".MyBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />

<category android:name="com.MyKidzDay" />
</intent-filter>
</receiver>

<service android:name=".MyIntentService" />

<activity
android:name=".SplashScreen"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

最佳答案

App Indexing 目前要求应用程序上的内容有相应的网页,并由 Google 索引。

如您所述,由于您的应用内容没有对应的网站,因此常规的应用索引程序对您不起作用。您必须先联系 Google 并告知他们您的“仅限应用”内容。

更多信息在这里 - https://developers.google.com/app-indexing/app-only

关于android - 如何在我的应用程序中添加 App Indexing 概念?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35745262/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com